Block Exit Popup

sviedinys

Power Member
Joined
Apr 18, 2010
Messages
525
Reaction score
75
Hello,

Is there any way to block these "leave page" exit popups? I am searching for solution on google already few hours, no working solution yet. I found something about javascript in mozilla to block, but not sure how it should work. I dont want to disable javascript at all.
 
The link skrode posted should work for any Greasemonkey compatible browser, which also includes Chrome and Opera.

As for it being something that'll work, that code seems to "override" the original onbeforeunload, that should not be necessary. Simply calling

Code:
window.onbeforeunload=null;
Should be enough to override the initial one.

The greasemonkey script also assumes the script is innerhtml, it does not take into account a url linked javascript file.
 
Back
Top