Skip to content

Instantly share code, notes, and snippets.

@chancecorbeil
Created November 24, 2022 00:55
Show Gist options
  • Save chancecorbeil/57d8dc6940f8f9e043d6043807952200 to your computer and use it in GitHub Desktop.
Save chancecorbeil/57d8dc6940f8f9e043d6043807952200 to your computer and use it in GitHub Desktop.
<script>
var maxHeight = 0;
$("div").each(function(){
if ($(this).height() > maxHeight) { maxHeight = $(this).height(); }
});
$("div").height(maxHeight);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment