Skip to content

Instantly share code, notes, and snippets.

@infrony
Created December 21, 2017 12:57
Show Gist options
  • Save infrony/adbfa7258038c456c589b3f7b2b37448 to your computer and use it in GitHub Desktop.
Save infrony/adbfa7258038c456c589b3f7b2b37448 to your computer and use it in GitHub Desktop.
The same height for both
$(function(){
var h_left = $(".left").height();
var h_right = $(".right").height();
var height = ( h_left > h_right) ? $(".right").height(h_left) : $(".left").height(h_right);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment