Answers for "jquery check how many div with certain class"

0

count all elements with class jquery

var numItems = $('.item').length;
Posted by: Guest on May-23-2021
0

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
Posted by: Guest on November-26-2020

Code answers related to "jquery check how many div with certain class"

Code answers related to "Javascript"

Browse Popular Code Answers by Language