Skip to content

Instantly share code, notes, and snippets.

@artduszynski
artduszynski / new_gist_file
Created October 8, 2013 20:16
Responsive EqualHeight code, from CodePen - http://codepen.io/micahgodbolt/pen/FgqLc
equalheight = 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;