Skip to content

Instantly share code, notes, and snippets.

@DeveloperWil
Created May 19, 2015 06:33
Show Gist options
  • Select an option

  • Save DeveloperWil/b07ecc4c165d2b802d93 to your computer and use it in GitHub Desktop.

Select an option

Save DeveloperWil/b07ecc4c165d2b802d93 to your computer and use it in GitHub Desktop.
Equal height <li>
var $height = 0 ;
$("li.l").each(function(){
if(($(this).height())>$height){
$height = $(this).height();
}
});
$("li.l").each(function(){
$(this).css("height",$height)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment