<a class="thumbnail-link" href="">
<div id="thumbnail-wrap" class="thumbnail-wrap">
<img width="600" height="360" src="image.jpg">
</div>
</a>
How do I show thumbnail-link div if there is image?
Opossite solution would be...
<script type="text/javascript">
jQuery(document).ready(function( $ ) {
$(".thumb-summary").find("img[src='']").parent().hide();
});
</script>
But than, its visible on page load that it hides divs without image and looks bad. I want to make it only show images if it finds them, jquery way please.