JavaScript DHTML/Event onMethod/onFocusOut — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 07:20, 26 мая 2010
"onFocusOut" Example
<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>