Revision: 53147
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at November 15, 2011 03:06 by wchimiak
Initial Code
$(".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);
});
});
Initial URL
Initial Description
Initial Title
Hover animation
Initial Tags
Initial Language
jQuery