Пытаюсь изучить javascript, но вот уже второй день ломаю голову, почему в google chrome не работает то, что работает в firefox и opera.
Задача: изменить текст ссылки с id="button1"
Вот тело:
<!DOCTYPE html>
<style type="text/css">
#button1{ background: #ccc; display: block; cursor: pointer;}
</style>
<head>
<title> Google chrome is a piece of shit! </title>
</head>
<body>
<div class="button"><a id="button1">button</a></div>
</body>
<script language="JavaScript">
window.onload = init;
var h;
function init(){
h = document.getElementById('button1');
h.onclick = Start;
}
function Start(){
console.log(h.text);
h.text = 'nonono'; //В Chrome не работает
}
</script>
лог выводится, а надпись не изменяется