Skip to content

Instantly share code, notes, and snippets.

@hsquareweb
Created December 2, 2013 16:21
Show Gist options
  • Save hsquareweb/7752062 to your computer and use it in GitHub Desktop.
Save hsquareweb/7752062 to your computer and use it in GitHub Desktop.
Equal column height
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