Skip to content

Instantly share code, notes, and snippets.

@wpbean
Created December 10, 2015 19:02
Show Gist options
  • Save wpbean/bec8c59af3a775b9481b to your computer and use it in GitHub Desktop.
Save wpbean/bec8c59af3a775b9481b to your computer and use it in GitHub Desktop.
WPB WooCommmerce Product Slider Grid Same Height
jQuery(function($){
/* ==========================================================================
Same height function
========================================================================== */
WpbEqualHeight = 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);
}
});
}
/* Grid Height */
$(window).load(function() {
WpbEqualHeight('.wpb_slider_area .ben-box .item');
});
$(window).resize(function(){
WpbEqualHeight('.wpb_slider_area .ben-box .item');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment