Created
February 12, 2019 19:13
-
-
Save Farmatique/3730d65e94ea881ebf3b6ca70c7c1ccf to your computer and use it in GitHub Desktop.
Run code only on first visit site, run animation once
This file contains hidden or 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
| $(document).ready(function(){ | |
| if(!sessionStorage.getItem('isshow')){ | |
| // here run code for animation that will fire only on first visit | |
| sessionStorage.setItem('isshow', true); | |
| } | |
| }); | |
| //https://stackoverflow.com/questions/32155036/show-jquery-popup-only-at-first-visit-of-a-page |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment