Monday, 5 January 2015

jQuery Hover effects

$(".transformable-handle-rotate").hover(
            function() {
                 $( this ).append( $( "<span> ***</span>" ) );
            }, function() {
                $( this ).find( "span:last" ).remove();
            }

        );

No comments:

Post a Comment