Advertisement
rdsedmundo

win focus checker

Sep 8th, 2011
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.23 KB | None | 0 0
  1. var window_focus;
  2. $(window).focus(function() {
  3.     window_focus = true;
  4. })
  5. .blur(function() {
  6. window_focus = false;
  7. });
  8. $(document).ready(function() {
  9. setInterval(function() { alert('Focus: '+window_focus+'') }, 1000);
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement