Skip to content

Instantly share code, notes, and snippets.

@kucheriavij
Created October 28, 2016 09:14
Show Gist options
  • Select an option

  • Save kucheriavij/bd2b0905d4b4fa0993b5b60a69d1b6d7 to your computer and use it in GitHub Desktop.

Select an option

Save kucheriavij/bd2b0905d4b4fa0993b5b60a69d1b6d7 to your computer and use it in GitHub Desktop.
js find max height
var heights = $('#other-stock-page').find('.event-item').map(function () {
return $(this).height();
}).get(),
maxHeight = Math.max.apply(null, heights);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment