Skip to content

Instantly share code, notes, and snippets.

@MilkZoft
Created January 16, 2012 04:18
Show Gist options
  • Select an option

  • Save MilkZoft/1619039 to your computer and use it in GitHub Desktop.

Select an option

Save MilkZoft/1619039 to your computer and use it in GitHub Desktop.
code.jobs - Equal column height - jQuery
var maxHeight = 0;
$("div.col").each(function() {
if($(this).height() > maxHeight) {
maxHeight = $(this).height();
}
});
$("div.col").height(maxHeight);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment