JavaScript DHTML/Event onMethod/onFocusIn — различия между версиями

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

Версия 10:02, 26 мая 2010

"onFocusIn" Example

    
<html>
<head>
<script language="JavaScript">
    function function2() {
        alert("<a> element will receive focus") 
    }
</script>
</head>
<body>
    <a id="myL" 
       href="http://www.wbex.ru" 
       target=_blank 
       onfocusin="function2()">
    www.wbex.ru
    </a>
</body>
</html>