I have a site where a user must login and once that is done they are directed to a new page and a pop up box appears. I have no problem displaying the popup box however if y
you can use localstorage to do that:
localstorage
if (localStorage.getItem("iswrpdivloaded") === null) { $('#back-wrapper').fadeIn(1000,function(){ $('#popup-image-back').fadeIn(1000); }); localStorage.setItem('iswrpdivloaded', 1); }