Skip to content

Instantly share code, notes, and snippets.

@morshedalam
Last active August 29, 2015 14:01
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 morshedalam/84c1cda0d20b8988273b to your computer and use it in GitHub Desktop.
Save morshedalam/84c1cda0d20b8988273b to your computer and use it in GitHub Desktop.
Callback on losing window focus
document.onfocusout = function (e) {
if (e === undefined) {//ie
e = event;
if (e.toElement == null) {
//do your action on focus out
}
}
};
//other browser
window.onblur = function (e) {
if (e !== undefined) {
//do your action on focus out
}
};
$(window).focus(function () {
//do your action on focus
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment