Skip to content

Instantly share code, notes, and snippets.

@jordanneenan
Last active January 20, 2016 04:12
Show Gist options
  • Save jordanneenan/8da5be686a73995120d1 to your computer and use it in GitHub Desktop.
Save jordanneenan/8da5be686a73995120d1 to your computer and use it in GitHub Desktop.
Match height of elements
//match height of elements
function matchHeight($element) {
var heighest = 0;
$element.each(function () {
var elemHeight = $(this).outerHeight();
if (elemHeight > heighest) {
heighest = elemHeight;
}
});
$element.css('height', heighest);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment