<h3>hover()함수 : enter와 leave</h3>
    <p>
        mouseenter + mouseleave
    </p>
    <h1 id="test1">hover Test !</h1>

    <script>
        $(function(){
            $('#test1').hover(
              function(){$(this).css('background','yellow')},
              function(){$(this).css('background','green')}  
            );
        });

    </script>

+ Recent posts