This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*Keeps columns equal height*/ | |
//Modified from http://www.cssnewbie.com/equal-height-columns-with-jquery/#.UtX2EJ5dXTc | |
function equalHeight(group) { | |
group.each(function(){ | |
$(this).css('height', 'auto'); | |
}) | |
if ($(document).width() > 600) { | |
var tallest = 0; |