JavaScript DHTML/Event onMethod/onBlur

Материал из Web эксперт
Версия от 10:20, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

"onBlur" Example

   <source lang="html4strict">
   

<head> <script language="JavaScript">

  function function1() {
      window.open("http://www.wbex.ru", "", ""); 
  } 

</script> </head> <body>

  Press the Tab key to set focus on the link below.
<a id="myL" href="http://www.wbex.ru/" target=_blank onBlur="function1()"> wbex.ru </a>
Now press the Tab key again to move focus to another element.

</body>


     </source>