I want to make a confirmation before user leaving the page. If he says ok then it would redirect to new page or cancel to leave. I tried to make it with onunload
<
In order to have a popop with Chrome 14+, you need to do the following :
jQuery(window).bind('beforeunload', function(){ return 'my text'; });
The user will be asked if he want to stay or leave.