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
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();".
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
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();".
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
HubSpot’s AI-powered customer agent resolves up to 50% of customer queries instantly, with some customers reaching up to 90% resolution rates. Learn More.
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'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.
HubSpot’s AI-powered customer agent resolves up to 50% of customer queries instantly, with some customers reaching up to 90% resolution rates. Learn More.