'onFocus' Example : onFocus « Event onMethod « JavaScript DHTML






'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()">
    java2s.com
</a>
</body>

    
      
        
  








Related examples in the same category

1.The onfocus Event Handler