I’m researching the optimising of JQuery code and was wondering if there is a way to better this code as it seems quite long…
$("#tabs-nav li a").hover(
function(){
if($(this).parent().hasClass('active')) {
} else {
$(this).stop().animate({ opacity: 1, marginTop: '24px'}, 200);
}
},
function(){
if($(this).parent().hasClass('active')) {
} else {
$(this).stop().animate({ opacity: 0.4, marginTop: '29px'}, 200);
}
}
);
Many thanks in advance!
You can eliminate your conditionals by passing a filter to the
parentfunction:If your
<a>elements are immediate children of the<li>elements, you should use Josh’s solution.