var currentTallest = 0,
currentRowStart = 0,
rowDivs = new Array(),
$el,
topPosition = 0;
jQuery(container).each(function() {
var el = jQuery(this);
jQuery(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);
}
});
}
jQuery(window).load(function() {
equalheight('.footer_top .col-md-3');
});
jQuery(window).resize(function(){
equalheight('.footer_top .col-md-3');
});
jQuery(document).ajaxSuccess(function(){
equalheight('.footer_top .col-md-3');
});
[/code]
Categories: Php Mysql Ajax Jquery JavaScript Mysql
0 Comments