Use the hasFocus
method:
if (document.hasFocus()) {
// ...
}
If you have iframe
s on your page, they need to be checked separately:
function isFocused() {
return document.hasFocus() || document.getElementById('iframe').contentWindow.document.hasFocus();
}