$(document).ready(function(){ function eqHeight(item) { var maxHeight = 0; $(item).each(function(){ $(this).css('height', 'auto'); if ($(this).outerHeight() > maxHeight) {maxHeight = $(this).outerHeight();} }); $(item).css('height', maxHeight); } if ($(window).width() >= 750) { resizeblocks(); } else { $('.small-slider-wrapp').css('height', 'auto'); } $(window).on('load resize', function () { if ($(window).width() >= 750) { resizeblocks(); } else { $('.small-slider-wrapp').css('height', 'auto'); } }); function resizeblocks() { setTimeout(eqHeight('.small-slider-wrapp'), 200); } });