Created
June 22, 2014 00:43
-
-
Save origamid/2d3b372853c4147c1060 to your computer and use it in GitHub Desktop.
Same Height
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(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