Is there a reliable cross-browser way to detect that a tab has focus.

The scenario is that we have an application that polls regularly for stock prices, and if the page doesn't have focus we could stop the polling and save everyone the traffic noise, especially as people are fans of opening several tabs with different portfolios.

Is window.onblur and window.onfocus an option for this?

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

Yes, window.onfocus and window.onblur should work for your scenario:

http://www.thefutureoftheweb.com/blog/detect-browser-window-focus

link|improve this answer
The onfocusin/onfocusout aspect of this, and also the note about telling the user you have paused are really good notes. Thanks. – Sohnee Sep 12 '11 at 14:30
Please note that you cannot distinguish between the page being active or inactive at page load this way. – pimvdb Sep 12 '11 at 14:35
feedback

Yes those should work for you. You just reminded me of this link I came across that exploits those techniques. interesting read

link|improve this answer
1  
very interesting link - thanks – JMax Sep 12 '11 at 14:33
+1 - that's a very clever trick, I could imagine that fooling a lot of people. – Sohnee Sep 12 '11 at 15:12
1  
What an ingenious and devious attack. Interesting read that, thanks. – Voo Sep 12 '11 at 17:13
feedback
var focused = true;

window.onfocus = function() {
    focused = true;
};
window.onblur = function() {
    focused = false;
};

AFAIK, focus and blur are all supported on...everything. (see http://www.quirksmode.org/dom/events/index.html )

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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