/ Published in: jQuery
Expand |
Embed | Plain Text
$(document).ready(function() { var eheight = 0; var eheight_el = $('.equal-h'); eheight_el.each(function(){ var me_height = $(this).height(); if(me_height>eheight) { eheight = me_height; } }); eheight_el.height(eheight); });
You need to login to post a comment.
