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