HTML код:
<form class="fo">
<input id="vvod" type="text">
<input class="but" type="image" src="img/button.png">
</form>
<div id="word"></div>
Css код:
#word{background:url(img/word.png) no-repeat; width:400px; height:45px; display:none;}
#vvod{width:287px; height:22px; margin-top:7px; margin-left:12px; border:white; display:block; float:left; font-size:95%; color:#797979;
}
Скрипт:
<script>
document.getElementById('vvod').onfocus = function() {
document.geteElementById('word').style.display = 'block';
}
</script>
Все равно не работает
|