HTML DOM Input Text blur() Method

Input Text Object : Remove focus from a text field

Definition and Usage

The blur() method is used to remove focus from a text field.

Tip: Use the focus() method to give focus to a text field.

Browser Support

Method
blur() Yes Yes Yes Yes Yes

Syntax

textObject.blur()

Parameters

None.

Technical Details

Return Value: No return value

❮ Input Text Object