Добрый день - сделал примитив. Отработка движения мыша и изменение div-а, но почему-то ругается на document.getElementByID('q2').innerHTML='поме яли';
кричит
Uncaught TypeError: undefined is not a function
Помогите где ошибка.
Вот "творение".
<!DOCTYPE HTML>
<html>
<head> </head>
<body>
<div id="q1" onmouseover=function_over(this)>
145255 <br>
</div>
<div id="q2">
777777 <br>
</div>
<script>
function function_over(obj){
document.getElementByID('q2').innerHTML='поменяли';
}
</script>
</body>
</html>