I'm trying to find the height of each image with a class of portfolio.Img, then apply it to a sibling div with a class of .overlay. And if that height is less than 500, display none two children of overlay with an id of page_categories and a class of .entry.
This works but only for one image not all images on the page:
<script>
$(document).ready(function () {
$('img.portfolioImg').load(function() {
var imgHeight = $('img.portfolioImg').height();
$('.overlay').css('height', imgHeight - 40 + 'px');
if ( $('.overlay').height() < 500 ) {
$('#page_categories').css('display', 'none');
$('.entry').css('display', 'none');
}else{
// do nothing
}
});
});
</script>
<div class="ct-coll-item col2 masonry-brick">
<article>
<img class="portfolioImg" src="_/img/13.png" />
<div class="overlay">
<div id="page_categories">
<a href="#">Publication</a>, <a href="#">Typeface</a>
</div>
<h2><a href="#">Adam Howe Styles Men of Alaska for Port Magazine</a></h2>
<div class="entry">
<p>An experimental typographic project by Riccardo Sabatini, which is a typeface inspired by old mechanics technical drawings, the steampunk visual world, and modern machinery.</p>
</div>
<footer class="postmetadata">
<time>July 23rd, 2012</time> / <a href="#">1 Comment</a>
</footer>
</div>
</article>
</div>
This div.ct-coll-item is repeated numerous times, I don't know how to apply .each() to make it work for all images and siblings/children.