Is there any DOM event for when the browser tab loses/gains focus? I know there are the blur and focus events on window, but they also fire when the browser window as a whole loses focus. The browser might then be still visible to the user. Of course such an event would be browser specific, but that's ok.

The reason why I want this is because I run animations that might consume quite some CPU time. When the browser tab is not visible there is no reason to continue animating. Now I know that modern browsers reduce the timer resolution of background tabs, but I could actually pause the animation, so that no CPU time whatsoever is consumed.

In case you are wondering, this is what I'm writing: http://web.student.tuwien.ac.at/~e0427417/browser-ponies/ponies.html

link|improve this question

42% accept rate
So are you asking how to tell when a tab stops being visible, or stops having focus? – nnnnnn Sep 20 '11 at 2:23
feedback

1 Answer

The closest thing I believe you'll find is the top answer here:

Is there a way track the focus on tab with Javascript?

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.