Skip to content

Instantly share code, notes, and snippets.

@ijones922
Created July 8, 2013 21:17
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ijones922/5952576 to your computer and use it in GitHub Desktop.
Save ijones922/5952576 to your computer and use it in GitHub Desktop.
Javascript: equal column heights
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