/ Published in: JavaScript
Expand |
Embed | Plain Text
$("li").hover( function () { $(this).append($("<span> ***</span>")); }, function () { $(this).find("span:last").remove(); } );
You need to login to post a comment.
onefastsnail on 05/24/12
2 people have marked this snippet as a favorite
$("li").hover( function () { $(this).append($("<span> ***</span>")); }, function () { $(this).find("span:last").remove(); } );
You need to login to post a comment.