Skip to content

Instantly share code, notes, and snippets.

@origamid
Created June 22, 2014 00:43
Show Gist options
  • Save origamid/2d3b372853c4147c1060 to your computer and use it in GitHub Desktop.
Save origamid/2d3b372853c4147c1060 to your computer and use it in GitHub Desktop.
Same Height
$(document).ready(function(){
$('.servicos__item').each(function(){
var highestBox = 0;
$('.servicos__item__coluna', this).each(function(){
if($(this).height() > highestBox)
highestBox = $(this).height();
});
$('.servicos__item__info',this).height(highestBox);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment