vote up 8 vote down star

I'd like to check if the current browser supports the onbeforeunload event. The common javascript way to do this does not seem to work:

if (window.onbeforeunload) {
    alert('yes');
}
else {
    alert('no');
}

Actually, it only checks whether some handler has been attached to the event. Is there a way to detect if onbeforeunload is supported without detecting the particular browser name?

flag

75% accept rate

6 Answers

vote up 5 vote down check

I wrote about a more-or-less reliable inference for detecting event support in modern browsers some time ago. You can see on a demo page that "beforeunload" is supported in at least Safari 4+, FF3.x+ and IE.

link|flag
1  
works seamlessly thanks for sharing – cruster Aug 13 at 17:51
vote up -2 vote down

It would probably be better to just find out by hand which browsers support it and then have your conditional more like:

if( $.browser.msie ) {
  alert( 'no' );
}

...etc.

The $.browser.msie is jQuery syntax, most frameworks have similar built-in functions since they use them so much internally. If you aren't using a framework then I'd suggest just taking a look at jQuery's implementation of those functions.

link|flag
vote up 1 vote down

Different approach, get the typeof

if(typeof window.onbeforeunload == 'function')

{
alert("hello functionality!");
}
link|flag
does not seem to work either – cruster Oct 1 '08 at 17:34
what browser are you testing this against? – curtisk Oct 1 '08 at 17:38
all of them, IE, Opera, Safari, Firefox your code does not work in any browser if(typeof window.onbeforeunload != 'undefined') is close, but fails in FF – cruster Oct 1 '08 at 17:50
vote up 1 vote down
alert('onbeforeunload' in window);

Alerts 'true' if onbeforeunload is a property of window (even if it is null).

This should do the same thing:

var supportsOnbeforeunload = false;
for (var prop in window) {
    if (prop === 'onbeforeunload') {
    supportsOnbeforeunload = true;
    break;
    }
}
alert(supportsOnbeforeunload);

Lastly:

alert(typeof window.onbeforeunload != 'undefined');

Again, typeof window.onbeforeunload appears to be 'object', even if it currently has the value null, so this works.

link|flag
almost works fine in IE, Opera and Safari, but FF gives me false, which does not seem to be correct – cruster Oct 1 '08 at 17:47
Sorry, I thought it was working reliably because I didn't realize Firefox supported onbeforeunload. – Grant Wagner Oct 1 '08 at 17:55
vote up 1 vote down

Cruster,

The "beforeunload" is not defined in the DOM-Events specification, this is a IE-specific feature. I think it was created in order to enable execution to be triggered before standard "unload" event. In other then IE browsers you could make use of capture-phase "unload" event listener thus getting code executed before for example an inline body onunload event.

Also, DOM doesn't offer any interfaces to test its support for a specific event, you can only test for support of an events group (MouseEvents, MutationEvents etc.)

Meanwhile you can also refer to DOM-Events specification http://www.w3.org/TR/DOM-Level-3-Events/events.html (unfortunately not supported in IE)

Hope this information helps some

link|flag
Thanks buddy, but this is just all theory - see other answers to this questions and you'll find almost perfect solutions. So, I really don't care if DOM does offer some interface or not. In reality, there are reliable ways how to check it, that's important. Oh, btw., only Opera lacks the support. – cruster Oct 6 '08 at 13:36
vote up 0 vote down

onbeforeunload is also supported by FF, so testing for browser won't help.

link|flag

Your Answer

Get an OpenID
or

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