Skip to content

Instantly share code, notes, and snippets.

@FinalDestiny
Created February 11, 2018 23:40
Show Gist options
  • Save FinalDestiny/8eb555daeb382be3d9eb49a25eb0bb97 to your computer and use it in GitHub Desktop.
Save FinalDestiny/8eb555daeb382be3d9eb49a25eb0bb97 to your computer and use it in GitHub Desktop.
<script type="text/javascript">
var maxHeight = 0;
jQuery("li.product").each(function(){
if (jQuery(this).height() > maxHeight) { maxHeight = jQuery(this).height(); }
});
jQuery("li.product").height(maxHeight);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment