Skip to content

Instantly share code, notes, and snippets.

@FinalDestiny
Created January 23, 2018 13:33
Show Gist options
  • Save FinalDestiny/d8a2e868aea4b92eb71925e7aaeffaa8 to your computer and use it in GitHub Desktop.
Save FinalDestiny/d8a2e868aea4b92eb71925e7aaeffaa8 to your computer and use it in GitHub Desktop.
jQuery(document).ready(function() {
var maxHeight = 0;
jQuery(".equalize").each(function(){
if (jQuery(this).height() > maxHeight) { maxHeight = jQuery(this).height(); }
});
jQuery(".equalize").height(maxHeight);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment