Hasclass Multiple Classes Jquery Code Example


Example 1: jquery select element with two classes


$('.class1.class2') // select element that has both class1 and class2

Example 2: jQuery hasClass() - check for more than one class


element.is('.class1, .class2')
// works, but it's 35% slower than

element.hasClass('class1') || element.hasClass('class2')

//https://stackoverflow.com/questions/2214952/jquery-hasclass-check-for-more-than-one-class

Example 3: JQuery .hasClass for multiple values in an if statement


var $html = $("html");

if ($html.hasClass('m320') || $html.hasClass('m768'))
{

// do stuff
// https://stackoverflow.com/questions/10559153/jquery-hasclass-for-multiple-values-in-an-if-statement

}

Example 4: jquery hasclass multiple classes


jQuery('button').click(function(){

var hcls =jQuery('p').hasClass('class2').addClass('class2');

if(hcls == true)
{

alert('Yuor class is remove ');
}
else{

alert('your class is nnot remove');
}

});

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android How Can I Convert A String To A Editable