Skip to content

Instantly share code, notes, and snippets.

@bradleykronson
Created August 19, 2013 13:57
Show Gist options
  • Save bradleykronson/6269421 to your computer and use it in GitHub Desktop.
Save bradleykronson/6269421 to your computer and use it in GitHub Desktop.
Equalize height for Div Elements
var maxHeight = 0;
$("div").each(function(){
if ($(this).height() > maxHeight) { maxHeight = $(this).height(); }
});
$("div").height(maxHeight);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment