This is for people like me, who hate libraries like this
Just add an OnBeforeUnload event to the page using the URL field in the browser, and it will force it to prompt before trying to leave/close the page, then you can tell it to ignore further prompts and you're free.
javascript:window.onbeforeunload=function(){return true}
This is for people like me, who hate libraries like this
Just add an
OnBeforeUnloadevent to the page using the URL field in the browser, and it will force it to prompt before trying to leave/close the page, then you can tell it to ignore further prompts and you're free.