When using window.onbeforeunload (or $(window).on(\"beforeonload\")), is it possible to display a custom message in that popup?
window.onbeforeunload
$(window).on(\"beforeonload\")
Maybe a sma
Try this code for all all browsers supported
window.onbeforeunload = function (e) { e = e || window.event; // For IE and Firefox prior to version 4 if (e) { e.returnValue = 'Sure?'; } // For Safari return 'Sure?'; };