Is it possible to check with jQuery if in an image tag an image url is inside and if there is not that the img tag will not show?
HTML now:
<div id="slide">
<img src="http://www.url.com/.jpg" alt="" />
<img src="http://www.url.com/.jpg" alt="" />
<img src="" alt="" /> - here is no img url so this one must be deleted
</div>
How can I do this?