I have a popup which contains a newsletter signup form. It is designed to trigger when the user’s mouse leaves the window, and, do that only once per session. I also have a button at the footer that when clicked, should trigger this same popup. However, after the popup has “automatically” displayed onMouseLeaveWindow, the trigger button at the footer is unable to raise the popup. This shouldn’t be the case.
Hi @oscarobians ,
Unfortunately, the Popup limits is not designed in this way.
The limit settings applied to all Interactions that trigger the open of the Popup included bricksOpenPopup
function in JS.
Instead of setting the “Mouse leave window” interaction on the Popup template settings. You can try set that on the Popup root section element + run once + Open Popup as action.
Example:
I believe this can fulfill your current requirement.
Regards,
Jenn
1 Like
Thank you!. I hadn’t realized it was possible to trigger a popup by adding an interaction to its content element. This solved it for me.