jquery select one element with same class code example
Example 1: how to get all elements with same class in jquery
$('.testimonial').each(function(i, obj) {
//test
});
Example 2: jquery select element with two classes
$('.class1.class2') // select element that has both class1 and class2