I am trying to give an alert confirm dialog box when users try to navigate away...I have the following code but it doesn't quite work...
jQuery(window).unload(function() {
var yes = confirm("You're about to end your session, are you sure?");
if (yes) {
return true;
} else {
return false;
}
});
The popup comes up fine but when I click "NO", it still navigates away...
Thanks for looking...
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…