Forked from divimode-philipp/trigger-after-delay-1.html
Created
September 30, 2022 08:36
-
-
Save stracker-phil/b2b95401d6ee257756dae58ae2d3c105 to your computer and use it in GitHub Desktop.
Sample trigger for Popups for Divi / Divi Areas Pro that opens the #contact Popup after 5 seconds
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
setTimeout(function () { | |
DiviArea.show('contact'); | |
}, 5000); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment