$('li').each(function (){ if($(this).hasClass("active")){ $(this).css("color", "red"); } else{ $(this).css("color", "blue"); } });