belobokin of Bitrix
7/28/2016 - 5:49 AM

equal height

equal height

function eqH(selector){
	var _h,h=0;
	$(selector).each(function(){
		$(this).height('auto');
		_h = $(this).height();
		if(_h > h) h = _h;
		$(selector).height(h);
	});
}
$(window).on('resize',function(){
	eqH('.selector');
}).triggerHandler('resize');