Skip to content

Instantly share code, notes, and snippets.

@bbrochier
Created August 9, 2013 11:10
Show Gist options
  • Save bbrochier/6192863 to your computer and use it in GitHub Desktop.
Save bbrochier/6192863 to your computer and use it in GitHub Desktop.
Same height elements
// Same Height Elements
$.fn.setAllToMaxHeight = function(){
return this.height( Math.max.apply(this, $.map( this , function(e){ return $(e).height() }) ) );
}
$(".mon-ul li").setAllToMaxHeight();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment