When the user goes history-back-1...how do I detect that? And then, alert \"the user clicked back!\"
Using binds (and jQuery preferably)
try:
window.onbeforeunload = function (evt) { var message = 'Are you sure you want to leave?'; if (typeof evt == 'undefined') { evt = window.event; } if (evt) { evt.returnValue = message; } return message; }