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

'onFocus' Example

    
<head>
<script language="JavaScript">
function function1() {
    document.getElementById("myL").blur();
    alert("<A> element has received focus.");
    window.open("http://www.java2s.com", "", ""); 
}
</script>
</head>
<body>
<a id="myL" 
   href="http://www.java2s.com/" 
   target=_blank 
   onFocus="function1()">
    www.java2s.com
</a>
</body>

    
      
      








Related examples in the same category

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