vote up 2 vote down star

I'm looking for an event which will fire whenever the user switches away from the page to another tab, and another event which fires when the user switches back to the tab again.

window.onblur and window.onfocus don't seem to work correctly across all browsers

Is there a proxy I could look at in order to synthesize this event?

flag

59% accept rate
I'm pretty sure this isn't possible, at least across all browsers. – Ian Elliott Jun 24 at 14:20

1 Answer

vote up 1 vote down

You might try using a framework, such as MooTools or jQuery which provide cross-browser support. They should be able to detect with more reliability the blur and focus events for the browser window.

I personally have used jQuery with much success:

$(window).blur(function(e) {
    // Do Blur Actions Here
});
$(window).focus(function(e) {
    // Do Focus Actions Here
});
link|flag
Cool, I might take a look at how those are implemented in jQuery – EoghanM Jun 30 at 10:27

Your Answer

Get an OpenID
or

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