I used following JS code to create equal height columns:
var colHeight = Math.max($('.3columngallery .col1').height(), $('.3columngallery .col2').height(), $('.3columngallery .col3').height());
$('.3columngallery .gallery').height(colHeight);
It’s working fine in firefox and safari but not in chrome and opera.
Here’s the link of the page, where i used this script: http://www.jaspreetkaur.com/gwstudio/product-gallery
If you are using images inside this container you should use
instead of
because images are not loaded in the dom.