Skip to content

Instantly share code, notes, and snippets.

@evizitei
Last active December 20, 2015 02:39
Show Gist options
  • Select an option

  • Save evizitei/6057885 to your computer and use it in GitHub Desktop.

Select an option

Save evizitei/6057885 to your computer and use it in GitHub Desktop.
$elements = $('div.tutorial-index');
heights = $elements.map(function(i, ele){ return $(ele).height(); });
max = 0
$.each(heights, function(i, height){ if(height > max) max = height;});
$elements.height(max);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment