Сообщение от Apelcun77
|
скажите как правильно?
|
Нужно одинаково писать идентификаторы...
И примеры тестовые делать полные...
<!DOCTYPE html>
<html>
<head>
<script src='http://code.jquery.com/jquery-latest.js'></script>
<!--
<link rel='stylesheet type=text/css href=tmp.css' />
-->
<style type='text/css'>
</style>
<script type='text/javascript'>
$(function (){
$('img').mouseenter(function() {
$('#colorcloth').html('вы навели на кртинку номер 1');
});
});
</script>
</head>
<body>
<p id="colorcloth"></p>
<img src="http://javascript.ru/forum/images/smilies/smile.gif" width="100" />
</body>
</html>