Skip to content

Instantly share code, notes, and snippets.

@muzafferkoluman
Created June 24, 2020 09:15
Show Gist options
  • Save muzafferkoluman/594d467fc865cf26ff5ff3a75512c4bb to your computer and use it in GitHub Desktop.
Save muzafferkoluman/594d467fc865cf26ff5ff3a75512c4bb to your computer and use it in GitHub Desktop.
// Your code here
document.addEventListener('DOMContentLoaded', function(){
// do something
var modal = UIkit.modal("#modal-example");
//modal.show();
var hasCookie=localStorage.getItem("isShowed");
//if(!hasCookie){
//delay 5second
setTimeout(function(){
modal.show();
localStorage.setItem("isShowed",true);
},5000);
//}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment