'onBlur' Example : onBlur « Event Handlers Reference « JavaScript Reference

'onBlur' Example

    
<head>
<script language="JavaScript">
   function function1() {
       window.open("http://www.java2s.com", "", ""); 
   } 
</script>
</head>
<body>
   Press the Tab key to set focus on the link below.<br>
   <a id="myL" href="http://www.java2s.com/" target=_blank onBlur="function1()">
   java2s.com
   </a>
   <a id="myL" href="http://www.java2s.com/" target=_blank onBlur="function1()">
   java2s.com
   </a><a id="myL" href="http://www.java2s.com/" target=_blank onBlur="function1()">
   java2s.com
   </a>   
   <br>
   Now press the Tab key again to move focus to another element
</body>

    
      
      








Related examples in the same category

1.'onBlur' Syntax and Note
2.'onBlur' Properties
3.'onBlur' is applied to