Input Search blur() Method
Example
Remove focus from a search field:
 document.getElementById("mySearch").blur();
Try it Yourself »
Definition and Usage
The blur() method is used to remove focus from a search field.
Tip: Use the focus() method to give focus to a search field.
Browser Support
| Method | |||||
|---|---|---|---|---|---|
| blur() | Yes | Yes | Yes | Yes | Yes | 
Syntax
 searchObject.blur()
Parameters
| None. | 
Technical Details
| Return Value: | No return value | 
|---|
❮ Input Search Object
 
 
