Skip to content

Instantly share code, notes, and snippets.

@axooh
Created August 29, 2012 19:23
Show Gist options
  • Save axooh/3517537 to your computer and use it in GitHub Desktop.
Save axooh/3517537 to your computer and use it in GitHub Desktop.
jQuery
// Equal column heights
var max_height = 0;
$("div.col").each(function(){
if ($(this).height() > max_height) { max_height = $(this).height(); }
});
$("div.col").height(max_height);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment