stuart-d
6/18/2013 - 2:20 PM

Add first and last classes in appropriate places on homepage testimonials in superstore

Add first and last classes in appropriate places on homepage testimonials in superstore

  // Add first and last classes in appropriate places on homepage testimonials in superstore
    jQuery( '.home .testimonials-list div.quote' ).removeClass(' first ').removeClass(' last ');
    jQuery( '.home .testimonials-list div.quote:nth-child(3n)').addClass( 'last' );
    jQuery( '.home .testimonials-list div.quote:nth-child(3n + 1)').addClass( 'first' );