dombrorj Posted May 3, 2012 Share Posted May 3, 2012 I have an exit popup script on a landing page that redirects the user to another URL with an "Are you sure you want to leave" alert box when the user tries to X out of the window. This works fine. On the same page I also have the following to redirect the page after a certain time... window.setTimeout('window.location="nextpage.php"; ',6000);} The problem I'm running into is that when the page redirects, it triggers the exit pop. I disable this function with clickable links on the page by using... <a href="link.html" onClick="window.onbeforeunload=null;" /> I can't quite figure out how to integrate that line of code with my redirect script to disable the exit pop. Any suggestions on how this could be accomplished? Thanks! Quote Link to comment https://forums.phpfreaks.com/topic/261981-disabling-exit-pop-with-window-redirect/ Share on other sites More sharing options...
dombrorj Posted May 3, 2012 Author Share Posted May 3, 2012 Got it... window.setTimeout('window.onbeforeunload="null"; window.location="nextpage.php"; ',6000);} Quote Link to comment https://forums.phpfreaks.com/topic/261981-disabling-exit-pop-with-window-redirect/#findComment-1342515 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.