Answers for "jquery get all elements with class inside div"

2

how to get all elements with same class in jquery

$('.testimonial').each(function(i, obj) {
    //test
});
Posted by: Guest on March-08-2021
0

jquery get all classes of a div

var classes = $('#test').attr('class').split(' ');

alert(classes[0]); // first class
alert(classes[1]); // second class
alert(classes[2]); // third class
Posted by: Guest on December-17-2020

Code answers related to "jquery get all elements with class inside div"

Code answers related to "Javascript"

Browse Popular Code Answers by Language