jquery hass class code example
Example 1: jquery hasclass
if ($( "#foo" ).hasClass('className')) {
$( "#foo" ).removeClass( 'className');
} else {
$( "#foo" ).addClass( 'className');
}
Example 2: jquery hasclass
jQuery(Selector).hasClass('class_name');
Example 3: jquery each has class
$('li').each(function (){
if($(this).hasClass("active")){
$(this).css("color", "red");
}
else{
$(this).css("color", "blue");
}
});