Skip to content

Instantly share code, notes, and snippets.

@fieldoffice
Last active August 29, 2015 14:03
Show Gist options
  • Select an option

  • Save fieldoffice/9e3495520b95245b50b3 to your computer and use it in GitHub Desktop.

Select an option

Save fieldoffice/9e3495520b95245b50b3 to your computer and use it in GitHub Desktop.
Equal Heights
$.fn.setAllToMaxHeight = function(){
return this.height( Math.max.apply(this, $.map( this , function(e){
if($(e).height()){
return $(e).height();
}
}) ) );
}
$('.equaliser').setAllToMaxHeight();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment