/ Published in: jQuery
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$(".sidebar-hover li a, ul.menu li ul li a").hover(function() { $(this).stop().animate({ borderWidth: "10px", borderLeftColor: "#47D322" }, 150); },function() { $(this).stop().animate({ borderWidth: "0px", borderLeftColor: "#202020" }, 150); }); });