Assuming I have the following HTML
<div class="news_item">
<div class="news_content">Some Content Here...</div>
<img src="something.jpg" />
</div>
I have the following JQuery code; which is suppose to count how many IMG elements there are within the particular DIV and change the CSS of DIV.news_content if there are no IMG elements.
$('div.news_item').each(function() {
if ($('img', this).length == 0) {
$('div.news_content', this).css('background-color', '#cccccc');
}
});
However $('img', this).length does not seem to work inside the each function.