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

