$("li a").click(function() {
$(this).parent().css({ width: 160 });
$("li").unbind('mouseenter mouseleave');
$("#Container").css({ width: 200 }).animate({ width: 700 }, 1000);
});
I wanna set width 120 for all li’s except current(this).
Thanks
1 Answer