Technology Programming

How to Check If the Browser Has the Focus in JavaScript

    • 1). Create two functions, one for when the browser is in focus, and one for when its focus is blurred:

      var onFocus = function() {

      // insert code to run when the window has gained focus.

      };

      var onBlur = function() {

      // insert code to run when the window has lost focus.

      };

    • 2). Incorporate feature detection. This is primarily for Internet Explorer, but it's best to use feature detection rather than browser detection because it's more reliable to directly test for the feature you want to manipulate. Internet Explorer uses the property document.onfocusin and document.onfocusout rather than window.onfocus and window.onbur, so you will need to check to see if those document properties are defined:

      if (document.onfocusin !== undefined) {

      var onfocusin = true;

      } else {

      var onfocusin = false;

      }

    • 3). Complete the code by binding the appropriate focus/blur events to the functions created in Step 1:

      if (onfocusin === true) {

      document.onfocusin = onFocus;

      document.onfocusout = onBlur;

      } else {

      window.onfocus = onFocus;

      window.onblur = onBlur;

      }

Related posts "Technology : Programming"

Brochure Design And Its Budget

Programming

Website designing delhi-web design services India-Website Development Company India

Programming

The Secrets and techniques Rob Fore Won't Tell you!

Programming

Where Do You Get Podcasting Ideas?

Programming

Avoid Hacking With The Help of WordPress Development Company

Programming

Sirius Radio - All You At Any Time Wished to Know

Programming

How to Use a Check Box to Filter a List

Programming

Get professional help from website development Dublin- promote business growth

Programming

PHP Shopping Carts

Programming

Leave a Comment