Skip to content

Instantly share code, notes, and snippets.

@gtaing1
Forked from vanpariyar/newsletter-popup.js
Created December 2, 2021 02:11
Show Gist options
  • Save gtaing1/75b7cc7bb3c5a6a5a2dbfd5613ebf1e7 to your computer and use it in GitHub Desktop.
Save gtaing1/75b7cc7bb3c5a6a5a2dbfd5613ebf1e7 to your computer and use it in GitHub Desktop.
Newsletter popup with session storage
if (typeof(Storage) !== "undefined") {
// Store
function showPopup(){
window.setTimeout(function () {
$('#newsletter-modal').modal('show');
sessionStorage.setItem("popup", 'hide');
},6000);
}
if( !sessionStorage.getItem("popup")){
sessionStorage.setItem("popup", 'show');
}
if( sessionStorage.getItem("popup") == 'show'){
showPopup();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment