Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

jQuery focusin() Method

❮ jQuery Event Methods

Example

Set background color of a <div> element when the <div> element or any child elements get focus:

$("div").focusin(function(){
  $(this).css("background-color", "#FFFFCC");
});
Try it Yourself »

Definition and Usage

The focusin event occurs when an element (or any elements inside it) gets focus.

The focusin() method attaches a function to run when a focus event occurs on the element, or any elements inside it.

Unlike the focus() method, the focusin() method also triggers if any child elements get focus.

Tip: An element gets focus when selected by a mouse click or by "tab-navigating" to it.

Tip: This method is often used together with the focusout() method.


Syntax

$(selector).focusin(function)

Parameter Description
function Required. Specifies the function to run when the focusin event occurs.

❮ jQuery Event Methods