Skip to content

Instantly share code, notes, and snippets.

@morshedalam
Last active August 29, 2015 14:01
Embed
What would you like to do?
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