Created
July 8, 2013 21:17
-
-
Save ijones922/5952576 to your computer and use it in GitHub Desktop.
Javascript: equal column heights
This file contains hidden or 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
function matching_heights() { | |
var highestCol = Math.max($('').height(),$('').height()); | |
$('').height(highestCol); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment