equalizer.js 232 B

1234567891011
  1. $.fn.equalize = function() {
  2. var maxHeight = 0;
  3. return this.each(function(){
  4. var $this = $(this);
  5. if ($this.height() > maxHeight) { maxHeight = $this.height(); }
  6. $this.height(maxHeight);
  7. });
  8. };