Easy Tutorial
❮ Html Outerwidth Ajax Param ❯

jQuery blur() Method

jQuery Event Methods

Example

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

$("input").blur(function(){ alert("Input field has lost focus"); });

Definition and Usage

The blur event occurs when an element loses focus.

The blur() method triggers the blur event, or specifies 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:

Add a function to the blur event:

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

jQuery Event Methods

❮ Html Outerwidth Ajax Param ❯