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 this for one time popup.
$(window).load(function(){ $('.popUp').show(); $('.close').click(function(){ $('.popUp').slideUp(); }); setTimeout('$(".popUp").fadeOut()', 10000); });