Вот так выглядит мой тестовый файл, то есть имеет такой код
<script>
node.onmouseover = function ()
{
this.src = '2.jpg';
};
node.onmouseout = function () {
this.src = '1.jpg';
}
</script>
<a href="www.ya.ru" onmouseover="function ()">111</a>
ничего не срабатывает
|