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 focusout() Method

❮ jQuery Event Methods

Example

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

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

Definition and Usage

The focusout event occurs when an element (or any elements inside it) loses focus.

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

Unlike the blur() method, the focusout() method also triggers if any child elements lose focus.

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


Syntax

$(selector).focusout(function)

Parameter Description
function Optional. Specifies the function to run when the focusout event occurs

❮ jQuery Event Methods