Skip to content

Instantly share code, notes, and snippets.

@NickDeckerDevs
Last active January 20, 2017 16:05
Show Gist options
  • Save NickDeckerDevs/99ff1ce0911d86590f1927c34ebe50c2 to your computer and use it in GitHub Desktop.
Save NickDeckerDevs/99ff1ce0911d86590f1927c34ebe50c2 to your computer and use it in GitHub Desktop.
Javascript / Jquery Equal Height Script to cycle through each container, then size the targeted elements inside that container. This works well when you will have the multiple named containers (or rows) of content and don't want all of the content to be the size as the above row. This keeps the rows with matching elements the same. .
equalheightByRow = function(container, target, checkChildren) {
$(container).each(function() {
var targets = $(this).find(target),
count = 0,
minHeight = 0,
maxHeight = 0;
targets.each(function() {
count++;
var elem = $(this);
if(checkChildren == true) {
var childrenHeight = getMinimumHeightForContent(elem);
minHeight = childrenHeight < minHeight ? minHeight : childrenHeight;
} else {
var currentHeight = elem.outerHeight();
maxHeight = maxHeight < currentHeight ? currentHeight : maxHeight;
}
var newHeight = minHeight < maxHeight ? maxHeight : minHeight;
if(count == targets.length) {
targets.css('height', newHeight+'px');
debugger;
}
});
});
}
function getMinimumHeightForContent(content) {
console.log('new minimum')
var minHeight = 0;
content.children().each(function() {
var elem = $(this);
console.log(elem)
console.log(elem.outerHeight(true))
var currentHeight = elem.outerHeight(true);
minHeight = minHeight + currentHeight;
});
console.log(minHeight);
return minHeight;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment