Last active
September 30, 2022 08:36
-
-
Save divimode-philipp/686e20fcfc90a7ece66d32af7d4cda8c 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