Skip to content

Instantly share code, notes, and snippets.

@baladkb
Created July 6, 2017 13:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save baladkb/2068c877a0b3bdf6e39bda74ae523cb7 to your computer and use it in GitHub Desktop.
Save baladkb/2068c877a0b3bdf6e39bda74ae523cb7 to your computer and use it in GitHub Desktop.
Jquery function to find out max height of <li>
var max = -1;
$("li").each(function() {
var h = $(this).height();
max = h > max ? h : max;
});
alert(max);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment