Skip to content

Instantly share code, notes, and snippets.

@absolutelynotjames
Created February 4, 2019 03:24
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 absolutelynotjames/c3eb369c9f070869d543f52c666062af to your computer and use it in GitHub Desktop.
Save absolutelynotjames/c3eb369c9f070869d543f52c666062af to your computer and use it in GitHub Desktop.
var maxHeight = 0;
var widget = $(".widget > div");
widget.each(function(){
if ($(this).height() > maxHeight) { maxHeight = $(this).height(); }
});
widget.height(maxHeight);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment