The HTMLElement.blur() method removes keyboard focus from the current element.
elt.blur()
<input type="text" id="myText" value="Sample Text"> <p></p> <button type="button" onclick="focusMethod()">Click me to gain focus</button> <button type="button" onclick="blurMethod()">Click me to lose focus</button>
focusMethod = function getFocus() {
document.getElementById("myText").focus();
}
blurMethod = function getBlur() {
document.getElementById("myText").blur();
} | Specification | Status | Comment |
|---|---|---|
| HTML Living Standard The definition of 'blur' in that specification. | Living Standard | |
| HTML 5.1 The definition of 'blur' in that specification. | Recommendation | |
| HTML5 The definition of 'blur' in that specification. | Recommendation | |
| Document Object Model (DOM) Level 2 HTML Specification The definition of 'blur' in that specification. | Obsolete |
| Desktop | ||||||
|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
| Basic support | ? | Yes | 5 | 9 | ? | ? |
| Mobile | |||||||
|---|---|---|---|---|---|---|---|
| Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
| Basic support | ? | ? | Yes | 5 | ? | ? | ? |
HTMLElement.focus()
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/blur