user3316061
user3316061

Reputation: 11

Change class to all images in div - jQuery

I included jQuery plugin to my project named SuperSlides, but it automatically resize every image in a slide to "background". This can by prevented by add class '.preserve' to image. I want to add this class to every image in a div (#container). Can anyone help me with this script?

Upvotes: 1

Views: 82

Answers (2)

Suraj Rawat
Suraj Rawat

Reputation: 3763

LIVE EXAMPLE HERE >>

 $(function(){
   $('#container img').addClass("preserve");
 });

Upvotes: 1

Farkhat Mikhalko
Farkhat Mikhalko

Reputation: 3645

$("#container img").addClass("preserve")

Upvotes: 4

Related Questions