Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- jQuery( document ).ready(function() {
- var maxHeight = 0;
- jQuery('article.post-grid').each(function(){
- var thisH = jQuery(this).height();
- if (thisH > maxHeight) { maxHeight = thisH; }
- });
- console.log(maxHeight);
- jQuery('article.post-grid').css('min-height', maxHeight);
- });
Advertisement
Add Comment
Please, Sign In to add comment