Hi, I want to put em tag before IMG tag dynamically , the image class is .photo.
<img class="photo" src="image.jpg" />
I want to convert this to
<em></em><img class="photo" src="image.jpg" />
using jQuery, I am using the append but its add the em in the img tag,
thanks.