• Hi Support,
    We have a popup with a link that works fine when set for exit intent only, but when we add the following script into a code module to delay the popup load, the popup link ceases to work.
    <script>
    window.setTimeout(function(){
    DiviArea.show(‘#free_consult_popup’)
    }, 20000);
    </script>
    Thank you for your assistance.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Thread Starter webexec

    (@webexec)

    Also tried this script:
    <script>
    DiviArea.addAction(‘ready’, function() {
    window.setTimeout(function() {
    var popupId = “#free_consult_popup”;
    DiviArea.show(popupId);
    }, 10000);
    });
    </script>

Viewing 1 replies (of 1 total)
  • The topic ‘Timed delay script kills popup link’ is closed to new replies.