How do you test if the browser has focus?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I haven't tested this in other browsers, but it seems to work in Webkit. I'll let you try IE. :o) Try it out: http://jsfiddle.net/ScKbk/ After you click to start the interval, change the focus of the browser window to see the result change. Again, tested only in Webkit.
|
|||||||||||||
|
|
use the hasFocus method of the document. You can find detailed description and an example here: hasFocus method |
|||||||||||||||||
|
|
HTML:
Javascript:
UPDATE: I'll fix it, but IE does not work very well |
||||
|
|
document.hasFocus(), which returns a boolean. It's built into the spec, so it can be done without jQuery. – B1KMusic Feb 4 at 21:41