I need to warn users about unsaved changes before they leave a page (a pretty common problem).
window.onbeforeunload=handler
This works bu
Try placing a return; instead of a message.. this is working most browsers for me. (This only really prevents dialog's presents)
return;
window.onbeforeunload = function(evt) { //Your Extra Code return; }