Skip to content

Instantly share code, notes, and snippets.

@IgorGavrilenko
Last active September 23, 2016 21:30
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 IgorGavrilenko/635f51057f1e19bc7d4f to your computer and use it in GitHub Desktop.
Save IgorGavrilenko/635f51057f1e19bc7d4f to your computer and use it in GitHub Desktop.
max Height
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