Skip to content

Instantly share code, notes, and snippets.

@claushingebjerg
Created June 30, 2015 10:58
Show Gist options
  • Select an option

  • Save claushingebjerg/52b733625278dbb4ce87 to your computer and use it in GitHub Desktop.

Select an option

Save claushingebjerg/52b733625278dbb4ce87 to your computer and use it in GitHub Desktop.
Set all elements to equal height of heighest, Javascript Jquery
var maxHeight = 0;
$(".myElement").each(function(){
if ($(this).height() > maxHeight) { maxHeight = $(this).height(); }
});
$(".myElement").height(maxHeight);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment