i am doing a popup alert like this:
window.onbeforeunload = confirmExit;
function confirmExit()
{
return "Wait! Save up to $20 Today! \n nClick OK to Save";
}
when i close the window i vet Stay on the page
and Close the browser
or something similar
what i am trying to do is: if Stay on the page
option has been chosen then i want to eighter redirect the user to another page or show a jquery popup.
something similar to:
if (window.onbeforeunload = null){
location.assign('http://example.com');
}
but this doesn't work.
Any ideas?
Thanks