Skip to content

Instantly share code, notes, and snippets.

@Farmatique
Created February 12, 2019 19:13
Show Gist options
  • Select an option

  • Save Farmatique/3730d65e94ea881ebf3b6ca70c7c1ccf to your computer and use it in GitHub Desktop.

Select an option

Save Farmatique/3730d65e94ea881ebf3b6ca70c7c1ccf to your computer and use it in GitHub Desktop.
Run code only on first visit site, run animation once
$(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