Mega Code Archive

 
Categories / JavaScript DHTML / Event Onmethod
 

OnFocusOut Example

<html> <head> <script language="JavaScript">     function function2() {         alert("<a> element lost focus")      }  </script> </head> <body>     <a id="myL" href="http://www.rntsoft.com/" target=_blank         onfocusout="function2()">rntsoft.com     </a> </body> </html>