Created
March 4, 2015 13:33
-
-
Save Stoffo/d735f06b10f253a3b54a to your computer and use it in GitHub Desktop.
Check if the Window has the focus or not
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var has_focus; | |
$(window).focus(function () { | |
has_focus = true; | |
document.title = "focus"; | |
}).blur(function () { | |
has_focus = false; | |
document.title = "no focus" | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment