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

❮ jQuery Event Methods

Example

Attach a function to the blur event. The blur event occurs when the <input> field loses focus:

$("input").blur(function(){
  alert("This input field has lost its focus.");
});
Try it Yourself »

Definition and Usage

The blur event occurs when an element loses focus.

The blur() method triggers the blur event, or attaches a function to run when a blur event occurs.

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


Syntax

Trigger the blur event for the selected elements:

$(selector).blur() Try it

Attach a function to the blur event:

$(selector).blur(function) Try it

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

❮ jQuery Event Methods