Gaskabur

Heigh del emento más alto de un colección

Sep 16th, 2019
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. jQuery( document ).ready(function() {
  2.   var maxHeight = 0;
  3.  
  4.   jQuery('article.post-grid').each(function(){
  5.      var thisH = jQuery(this).height();
  6.      if (thisH > maxHeight) { maxHeight = thisH; }
  7.   });
  8.   console.log(maxHeight);
  9.   jQuery('article.post-grid').css('min-height', maxHeight);
  10. });
Advertisement
Add Comment
Please, Sign In to add comment