HTML | DOM blur() Method
The DOM blur method is used to remove the keyboard focus from the current element and also give focus with the help of focus() method. We can apply the blur to any element and enable it by doing some operation. For example, we can blur to text-box by clicking a button.
Syntax:
Object.blur()
Example:
html
< html > < head > < title >HTML DOM blur() Method</ title > </ head > < body style = "text-align: center;" > < h1 style = "color:green;" > GeeksforGeeks </ h1 > < h2 > DOM blur Property </ h2 > < input type = "text" id = "txt" placeholder = "Enter text here" > < br > < br > < button type = "button" onclick = "inputFocus()" >Focus</ button > < button type = "button" onclick = "inputBlur()" >Blur</ button > < script > function inputFocus() { document.getElementById('txt').focus(); } function inputBlur() { document.getElementById('txt').blur(); } </ script > </ body > </ html > |
Output:
Before clicking on focus button:
After clicking on blur button:
Supported Browsers: The browser supported by blur() method are listed below:
- Google Chrome 1
- Edge 12
- Internet Explorer 5.5
- Firefox 1.5
- Opera 8
- Safari 3
Please Login to comment...