jquery select all elements with same class and set value code example
Example: how to get all elements with same class in jquery
$('.testimonial').each(function(i, obj) {
//test
});
$('.testimonial').each(function(i, obj) {
//test
});