Hi, I need to style images of a JPG format only. (jQuery)
I need class to be applied to jpeg's when it's placed in specific container (not all jpg's on the page).
For example:
<img src="non-jpeg.jpg"> <!--no changes made-->
<img src="jpeg-image.jpg"> <!--no changes made-->
<div class="spec-container"><img src="jpeg-image.jpg"></div> <!--changes applied-->
to be like this
<img src="non-jpeg.jpg">
<img src="jpeg-image.jpg">
<div class="spec-container"><img src="jpeg-image.jpg" class="styled"></div>
Thanks in advance!