Тема: jQuery .hover
Показать сообщение отдельно
  #2 (permalink)  
Старый 25.04.2015, 06:33
Профессор
Отправить личное сообщение для laimas Посмотреть профиль Найти все сообщения от laimas
 
Регистрация: 14.01.2015
Сообщений: 12,990

<html> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 
<style>
</style> 
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script> 
$(function() {
    $('#foo').hover(
        function(){
            $(this).text('Курсор на объекте')
        },
        function(){
            $(this).text('Курсор вне объекта');
    });
});
</script>     
</head> 
<body>
<div id="foo">Наведи мышку и получи фишку!</div>
</body> 
</html>
Ответить с цитированием