Skip to content

Instantly share code, notes, and snippets.

@megantaylor
Created July 18, 2014 21:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save megantaylor/22a355eea1cfff3160cb to your computer and use it in GitHub Desktop.
Save megantaylor/22a355eea1cfff3160cb to your computer and use it in GitHub Desktop.
Calculate the height of the higher column and automatically adjust all other columns to this height.
var max_height = 0;
$("div.col").each(function(){
if ($(this).height() > max_height) { max_height = $(this).height(); }
});
$("div.col").height(max_height);
//http://web.enavu.com/tutorials/top-10-jquery-snippets-including-jquery-1-4/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment