JavaScript DHTML/Event onMethod/onFocusOut

Материал из Web эксперт
Перейти к: навигация, поиск

"onFocusOut" Example

   <source lang="html4strict">
   

<html> <head> <script language="JavaScript">

   function function2() {
       alert("<a> element lost focus") 
   } 

</script> </head> <body>

   <a id="myL" href="http://www.wbex.ru/" target=_blank 
      onfocusout="function2()">wbex.ru
   </a>

</body> </html>


     </source>