Skip to content

Instantly share code, notes, and snippets.

@maese
Last active October 8, 2015 23:08
Show Gist options
  • Save maese/7e25ab88c55817be8a1d to your computer and use it in GitHub Desktop.
Save maese/7e25ab88c55817be8a1d to your computer and use it in GitHub Desktop.
Igualar altura divs (paul irish)
$.fn.setAllToMaxHeight = function(){
return this.height( Math.max.apply(this, $.map( this , function(e){ return $(e).height() }) ) );
}
// usage: $(‘div.unevenheights’).setAllToMaxHeight()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment