Tagged Questions
1
vote
1answer
321 views
Is possible to display jquery popup meanwhile onbeforeunload trigger call?
Is this possible to open jquery popup when onbeforeunload event call?
Please check in image url here I have html content with one button and google link. Now when I click on tab or window close I ...
0
votes
2answers
4k views
window.onbeforeunload support in Firefox
I am using window.onbeforeunload in my javascript.
This works perfectly in IE but is not triggered in Firefox.
I checked on different links in stackoverflow.... In it I read that ...
1
vote
2answers
824 views
Excluding clicks within a DIV from a window.onbeforeunload
Given the following function:
window.onbeforeunload= function() {
if (CKEDITOR.instances.stuff.getData().length > 0 && oktoquit == false) {
return "You have unsaved changes. ...