Skip to content

Instantly share code, notes, and snippets.

@sambody
Created June 25, 2014 11:48
Show Gist options
  • Save sambody/908ca48b8fc063df9a32 to your computer and use it in GitHub Desktop.
Save sambody/908ca48b8fc063df9a32 to your computer and use it in GitHub Desktop.
Equal height columns
// Set equal height columns, for background color
$.fn.setAllToMaxHeight = function(){
return this.height( Math.max.apply(this, $.map( this , function(e){ return $(e).height() }) ) );
}
$('.main-col, .sub-col').setAllToMaxHeight()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment