Equalize Div with Jquery
- سُلَيْمَان بْن دَاوُوْد

- Jul 30, 2020
- 1 min read
Updated: Aug 2, 2020
var maxHeight = 0;
jQuery(".wprevpro_t1_DIV_2").each(function(){
if (jQuery(this).height() > maxHeight) { maxHeight = jQuery(this).height(); }
});
jQuery(".wprevpro_t1_DIV_2").height(maxHeight);
Comments