'blur()' Syntax, Parameters and Note : blur « Javascript Methods « JavaScript Reference

'blur()' Syntax, Parameters and Note

Note:

Element loses focus.
The onBlur event is triggered as a result of calling this method.
    
Syntax:
    
window.blur()
document.getElementById("elementID").blur()
document.all.elementID.blur() // IE only

    

      
      








Related examples in the same category

1.'blur()' Example
2.'blur()' is applied to