9951 explained code solutions for 126 technologies


javascriptConfirm page close action


window.onbeforeunload = function(e) { return true; }ctrl + c
onbeforeunload

event that fires before page is closed

return true

function can only return values, since browser only allows confirming closing the page