Last active
October 8, 2015 23:08
-
-
Save maese/7e25ab88c55817be8a1d to your computer and use it in GitHub Desktop.
Igualar altura divs (paul irish)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.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