seiya-n1987 of JScript
8/28/2017 - 4:55 AM

【Jquery】 Height Aligned

  $(window).on('load resize', function () {

  	align_heights('.blogBox_wrap');

  });

  function align_heights(parent) {

	  parent = $(parent);

	  var arr_h = [];

	  $( ' > *', parent ).each(function(index){
		  arr_h.push( $(this).height() );
	  });

	  var max_h = Math.max.apply( null, arr_h );

	  $( ' > *', parent ).height(max_h);

  }