Remove First Img In First Li Element With Jquery
Solution 1:
You can select first li
and then find first img
inside it and remove it DEMO.
$('.products li').first().find('img').first().remove()
Another way to do this is
$('.products li:first img:first').remove()
Post a Comment for "Remove First Img In First Li Element With Jquery"