Created
June 19, 2017 10:47
-
-
Save manmar/f1bb6e85d4e99d7c067a05ea5f3805e8 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// pen by Micah Godbolt: https://codepen.io/micahgodbolt/pen/FgqLc | |
equalHeightCols = function(container){ | |
var currentTallest = 0, | |
currentRowStart = 0, | |
rowDivs = new Array(), | |
$el, | |
topPosition = 0; | |
$(container).each(function() { | |
$el = $(this); | |
$($el).height('auto') | |
topPostion = $el.position().top; | |
if (currentRowStart != topPostion) { | |
for (currentDiv = 0 ; currentDiv < rowDivs.length ; currentDiv++) { | |
rowDivs[currentDiv].height(currentTallest); | |
} | |
rowDivs.length = 0; // empty the array | |
currentRowStart = topPostion; | |
currentTallest = $el.height(); | |
rowDivs.push($el); | |
} else { | |
rowDivs.push($el); | |
currentTallest = (currentTallest < $el.height()) ? ($el.height()) : (currentTallest); | |
} | |
for (currentDiv = 0 ; currentDiv < rowDivs.length ; currentDiv++) { | |
rowDivs[currentDiv].height(currentTallest); | |
} | |
}); | |
} | |
$(window).load(function() { | |
equalHeightCols('.equal-height-cols'); | |
}); | |
$(window).resize(function(){ | |
equalHeightCols('.equal-height-cols'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment