Skip to content

Instantly share code, notes, and snippets.

@inneroot
Created May 12, 2018 00:03
Show Gist options
  • Save inneroot/c0cc903a919041fa5cebc16fb4b39c1c to your computer and use it in GitHub Desktop.
Save inneroot/c0cc903a919041fa5cebc16fb4b39c1c to your computer and use it in GitHub Desktop.
2 colons same height jQuery
var max_height = 0;
$("div.col").each(function(){
if ($(this).height() > max_height) { max_height = $(this).height(); }
});
$("div.col").height(max_height);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment