/ Published in: jQuery
URL: http://luiszuno.com/themes/watercolor/spring/blog.html
Rolls overs a link
Expand |
Embed | Plain Text
// rollovers $(".side-block a").hover(function() { // on rollover $(this).stop().animate({ marginLeft: "10" }, "fast"); } , function() { // on out $(this).stop().animate({ marginLeft: "0" }, "fast"); });
You need to login to post a comment.
