Cancel onbeforeunload event handler?
In javascript functions can be overwritten. You can simply assign it a new purpose: window.onbeforeunload = function () { // blank function do nothing } This will completely overwrite the existing version of window.onbeforeunload. Note: Why don’t you simply remove the line of code that sets this function in the first place? Or if you … Read more