/ Published in: jQuery
There isn't really anything here that others haven't already accomplished in plugin form. I needed something simple that could be easily stored, retrieved, and reused.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
// Equalize column heights var max = 0; $('#list, #of, #elements').each( function(){ max = Math.max( max, $(this).height() ); }) .css({ 'height': max });