I need to open a HS popup using a CTA button in an external website. The instructions say to add class hs-cta-trigger-button hs-cta-trigger-button-... to the button.
And it works if the button is already in the page before the hubspot script is loaded, but it doesn't if the button is dynamically added to the page.
How to programmatically attach a popup to a dynamically created button?
Mar 20, 20255:56 AM - edited Mar 20, 20255:58 AM
Top Contributor
Dynamic CTA button with popup
SOLVE
Hi,
Try this.
window.addEventListener('load', () => {
if (window.HubSpotCallsToActions) {
console.log('The api is already initialized');
} else {
window.hsCallsToActionsReady = [
() => {
console.log('Now the api is ready');
},
];
}
});
And if you see text in console, try to put in each condition this : "window.HubSpotCallsToActions.refresh();".
Anything works better?
Sylvain Tirreau
FREELANCE HUBSPOT DEVELOPER SPECIALIZING IN ADVANCED HUBSPOT CUSTOMIZATION.
I am not a HubSpot member. Just a HubSpot community member.
I don't have any object HubSpotConversations. The documentation does mention an object HubSpotCallsToActions but it doesn't appear to have any method to open a popup.
Mar 20, 20255:56 AM - edited Mar 20, 20255:58 AM
Top Contributor
Dynamic CTA button with popup
SOLVE
Hi,
Try this.
window.addEventListener('load', () => {
if (window.HubSpotCallsToActions) {
console.log('The api is already initialized');
} else {
window.hsCallsToActionsReady = [
() => {
console.log('Now the api is ready');
},
];
}
});
And if you see text in console, try to put in each condition this : "window.HubSpotCallsToActions.refresh();".
Anything works better?
Sylvain Tirreau
FREELANCE HUBSPOT DEVELOPER SPECIALIZING IN ADVANCED HUBSPOT CUSTOMIZATION.
I am not a HubSpot member. Just a HubSpot community member.
You’re right—the HubSpot popup trigger (hs-cta-trigger-button) works only when the button is present before the script loads. However, for dynamically added buttons, you need to manually reinitialize the event listener.
Solution: Attach Event Listener After Button Is Added
Since your button is dynamically created, you need to use event delegation or manually re-trigger HubSpot’s script. Try this approach:
I don't have any object HubSpotConversations. The documentation does mention an object HubSpotCallsToActions but it doesn't appear to have any method to open a popup.
And thanks @ZOnlycat for the help and suggestions!
I'd love to put you in touch with some additional Top Experts to see if they have any insights to share regarding CTAs in this particular case: Hi @TomM2, @trevordjones and @danmoyle do you have ideas to help @Alberto_Gori, please?
Have a great day and thanks so much!
Best, Bérangère
Loop Marketing is a new four-stage approach that combines AI efficiency and human authenticity to drive growth.
Apreciate the tag @BérangèreL - unfortunately I'm out of my expertise on this specific question from @Alberto_Gori. I've used the pop up tool with the HubSpot tracking code on my external site, and the settings for when it shows or doesn't - not code like this. Hopefully another community member can help!
Did my answer help? Please "mark as a solution" to help others find answers. Plus I really appreciate it!
I use all tools available to help answer questions. This may include other Community posts, search engines, and generative AI search tools. But I always use my experience and my own brain to make it human.
I'll see if other Community Members can share their experience here: Hi @Jnix284, @sylvain_tirreau and @Teun do you have tips/insights to share with @Alberto_Gori, please?
And @Alberto_Gori, if you are still looking to open the dynamically created CTA in a popup and you cannot, for new feature suggestions, I'd also recommend first to search and check if this idea is already present on our Ideas Forum here. If you find a similar idea, give it an upvote and share your unique use case in the comments.