Of all the browsers, it seems that only Opera doesn't support onunload/onbeforeunload events. (It's been fifteen years now, Opera!) Solutions for this issue have been covered many times, here for example: onbeforeunload support detection

Unfortunately, as of Opera 11.51, ("onbeforeunload" in window) == true, but the actual onbeforeunload event is never executed!

My web application needs to send data to server when a user leaves the page; I'm using a synchronous ajax request for this. It looks like I have to resort to using a "Save" button somewhere on the page to cover up for Opera issues. However, I don't want this button to confuse users whose browsers are capable of auto-saving through ajax, so I'd really like the button to only show up in Opera.

Is my only choice browser-detection? The problem is, Opera has an option to disguise itself as other browsers anyway.

link|improve this question

75% accept rate
why not use onuload for Opera ? – c69 Sep 23 '11 at 11:04
body.onunload works in Opera 11.5, unless you're calling window.location.reload() – Lyth Sep 23 '11 at 11:04
<body onunload = 'alert("test")'>, body.onunload = function() {alert("test")}; and body.unload(function() {alert("test")}); all don't work on my machine. Opera 11.51, no add-ons, Windows 7 64bit. – Cyril Sep 23 '11 at 11:09
1  
Are you refreshing/reloading the page or navigating to another? <body onunload="alert('!')"><p onclick="window.location.reload();">Click here to reload</p><p><a href="http://ya.ru">Get away</a></p></body> - I have onunload working in this case when you leave the page. Anyway, you won't get the code executed in Opera if you close the page/app, so a better way may be to implement some other kind of data saving. How about some local storage? – Lyth Sep 23 '11 at 14:20
Yeah, you're absolutely right, my problem is that I need it to save data in all cases and I was testing it by closing the tab mostly. Local storage is a good idea, but as I understand, the changes made in Opera won't be visible if the user logs in from another browser. Also, are we all Russki's here, or is it a time zone thing and Americans are sleeping in? :D – Cyril Sep 23 '11 at 14:58
show 1 more comment
feedback

2 Answers

I can't reproduce your finding that 'onbeforeunload' in window is true in Opera 11.5x. This is the best way to do it and should still work. Are you sure you haven't left in some definition somewhere, e.g. you've written

onbeforeunload = function (){ ... }

later in the same script that does the feature detection? If you do alert(window.onbeforeunload), what do you see? Could you share a link to the page with the problem?

link|improve this answer
1  
I can confirm, I've just checked in Opera 11.62 and alert('onbeforeunload' in window) indeed says false. I even checked with opera:config > User Agent > Spoof UserAgent ID set to various values, but it's always false for me. – jakub.g Apr 5 at 12:37
feedback

Opera screwed the pooch on this one. I detect for Opera by looking for window.opera and if it exists, I deny Opera what it can't handle.

Using unload is no good I think, because it occurs too late in the game. Sometimes onbeforeunload is the only thing that'll do the trick. Once again, I just look for opera on the window object, and, if it exists, deny it the things it can't do. :)

PPK talks about it here: http://www.quirksmode.org/js/detect.html

link|improve this answer
Looking for window.opera is not a good way to do it. Look for features, not browsers :) – hallvors May 9 at 12:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.