Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Javascript: How to create event listener on Window.Blur () event?

share|improve this question
Are you using jQuery or any other JS library or are we just talking about straight JS? – Levi Hackwith Dec 3 '10 at 20:36
It's the same as with any other event listener -- what did you try so far? – casablanca Dec 3 '10 at 20:37
1  
OK, this is funny: I wrote an answer, but wanted to do a quick test of it. It worked, and then I couldn't get back to this page to post my answer because the tab I was testing my script in would alert every time it lost focus. Meanwhile patrick answered. – JacobM Dec 3 '10 at 20:40
@JacobM - I've been an alert() hostage before. Not fun. :o) – user113716 Dec 3 '10 at 20:46
I have too, but this was the first time I did it to myself. :) – JacobM Dec 3 '10 at 20:51

2 Answers

up vote 6 down vote accepted
window.onblur = function() {
   //say goodbye
};

According to quirksmode onfocus and onblur are available on the window in most browsers.

share|improve this answer
Only thing I'll add is that older version of Internet Explorer didn't handle this correctly; you can work-around using document.onfocusout. – JacobM Dec 3 '10 at 20:42

Try:

window.onBlur = function(e) {
    // Code here.
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.