the Future of the Web
  • Home
  • Hire Us
  • Articles
  • About
  • Contact
  • Detecting focus of a browser window

    May 16 2007

    If you have some constantly running Ajax or JavaScript updates on a page, it might be nice to pause these when the browser is minimized or in the background, or when the user switches to another tab. After all, there's no sense in using the user's CPU and network if they aren't even watching what you're doing.

    To achieve this, we can use the window.onfocus and window.onblur events like this:

    window.onblur = function() {
        // Pause the Ajax updates or animations
    };
    window.onfocus = function() {
        // Start the Ajax updates and animations again
    };
    

    These events work in every major browser (Firefox, Internet Explorer 6/7, Safari & Opera).

    Unfortunately, there's no way to tell with JavaScript if the browser is visible to the user. For example, they might be chatting on IM in a small window in front of the browser. You'll also find that the page is 'blurred' when you click into the location bar of the browser (except in Safari). You might want to display a message like "PAUSED" (think Super Mario Brothers) so people know why everything has stopped moving.

    I've set up a demo page where you can try this out.

    Tags: javascript window events onfocus onblur tips
    View 10 Comments | Add a comment
  • Comments

    1. Frederico Padilha at 8:43pm on May 16, 2007

    Nicee, I guess that pages that use a lot of JS will do the users a great favor in disabling some stuff that keeps taking resources from the computer... But if only programmers where that considerate ahahaha =)!

    2. Georges Jentgen at 10:25pm on May 16, 2007

    Never thought about this before, but as I am currently programming a live website analyzer with heavy Ajax-use, this will come in very handy. So I will disable every AJAX-calls when they are not needed. Awesome! Thanks for the tip!

    3. Aaron Bassett at 12:18pm on May 17, 2007

    Your post has really got me thinking about how I could use the onblur event to enhance different applications I've been working on....or just how you could annoy your users, window.onblur=window.focus();
    I even wrote a quick post about my experiments with this: http://foobr.co.uk/2007/05/annoying_users_with_onblur/

    It doesn't just apply to AJAX or Javascript heavy pages either. With externalInterface we could use this technique to interact with Flash. Videos which pause when you switch applications is the first application that comes to mind.

    4. Jesse Skinner at 12:49pm on May 17, 2007

    @Aaron - nice idea. Not annoying users, of course, but pausing video. I wonder what else we can do with this...

    5. dandyna at 1:02pm on May 17, 2007

    nifty tip, Jesse!

    6. Georges Jentgen at 2:10pm on May 17, 2007

    Another Idea I just got and what I will implement next into my PHP-Frameowork:

    onBlur: graying out the page with some sort of "pause" message. Maybe a sitemap or some ads? :)

    7. Aaron Bassett at 4:44pm on May 17, 2007

    @Georges: I don't think it would be viable to put actual content into the onblur'd page because as soon as the user tries to click on say an ad the window will receive focus again and the ad will disapear.

    Unless you made the user cancel the onblur'd page through a link or similar rather than just clearing it when the window gains focus. But this I think could become a nuisance (and perhaps confusing).

    When I go back to a page I expect to be able to work with it right away. I don't expect to have to tell it that I want it to become active again :)

    8. Mika at 10:17am on January 10, 2008

    Hey man,

    This really doesn't work in Firefox on Mac...it works when you switch between Firefox windows, but not when switching to another application.

    /M

    9. Greeny at 4:06pm on January 29, 2008

    Important point Jesse! Consider global energy savings if all websites would be optimized to use CPU only when focused.

    10. Al at 5:06pm on March 26, 2008

    Have you tried to add a textarea to the document and then minimize the window when the textarea is still selected? Works in IE but not in Firefox. I tell this because in the tipical ajax chats, is useful to keep the focus in the textarea all the time, so the user can type another message without having to get the mouse. Problem is that with Firefox the onblur event doesn't happen at all because the browser thinks the focus is still in the textarea. Is there any workaround for this?

    Add a Comment

    Note: HTML tags and entities will be converted so that they are displayed as you type them. This means if you type in <em>, people will see <em>, and if you type &lt;em&gt;, people will see &lt;em&gt;.

  • Request a Quote

  • Jesse Skinner

    Jesse Skinner
    • Hire Me
    • About Me
    • Email Me
    • RSS Feed RSS Icon
  • Recent Articles

    • Parse Accept-Language to detect a user's language
    • Twitter
    • Three years of The Future of the Web
    • Saving data to a file with PHP
    • Easy web scraping with PHP
    • See all the articles
    • IBM: Where and when to use Ajax
    • Code Igniter 1.6.0 Released
    • Update a Dev Site Automatically with Subversion
    • JavaScript Functions are Variables
    • See All...
  • Categories

    • javascript (37)
    • links (19)
    • about (18)
    • web (14)
    • server (10)
    • html (10)
    • css (8)
    • carnival (7)
    • browsers (7)
    • design (4)
    • seo (4)
    • ads (4)
    • standards (4)
    • events (4)
    • work (4)
  • Older Articles

    • May 2008
    • April 2008
    • February 2008
    • January 2008
    • December 2007
    • November 2007
    • September 2007
    • August 2007
    • July 2007
    • June 2007
    • May 2007
    • April 2007
    • March 2007
    • February 2007
    • January 2007
    • December 2006
    • November 2006
    • October 2006
    • September 2006
    • August 2006
    • July 2006
    • June 2006
    • May 2006
    • April 2006
    • March 2006
    • February 2006
    • January 2006
    • December 2005
    • November 2005
    • October 2005
    • September 2005
    • August 2005
    • April 2005
    • See All...
Copyright © 2008 Jesse Skinner | CSS | XHTML | RSS | Help | Impressum | Cutie Quilts | Internet Blog Top Sites