Skip to content

Instantly share code, notes, and snippets.

@johnlewisdesign
Last active June 18, 2020 19:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johnlewisdesign/d20a5eade5039eda4e21355763f67e95 to your computer and use it in GitHub Desktop.
Save johnlewisdesign/d20a5eade5039eda4e21355763f67e95 to your computer and use it in GitHub Desktop.
Set whether page has been visited or not yet via jQuery (COVID-19 banner show once)
$(document).ready(function() {
var yetVisited = localStorage['visited'];
if (!yetVisited) {
// open popup
localStorage['visited'] = "yes";
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment