Skip to content

Instantly share code, notes, and snippets.

@Stoffo
Created March 4, 2015 13:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Stoffo/d735f06b10f253a3b54a to your computer and use it in GitHub Desktop.
Save Stoffo/d735f06b10f253a3b54a to your computer and use it in GitHub Desktop.
Check if the Window has the focus or not
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