Skip to content

Instantly share code, notes, and snippets.

@Prezens
Last active August 7, 2016 13:24
Show Gist options
  • Save Prezens/d493317fb1c8bcee8b166dfa35e3dbfa to your computer and use it in GitHub Desktop.
Save Prezens/d493317fb1c8bcee8b166dfa35e3dbfa to your computer and use it in GitHub Desktop.
All blocks once height.
function setEqualHeight(columns){
var tallestcolumn = 0;
columns.each(function(){
var currentHeight = $(this).height();
if(currentHeight > tallestcolumn){
tallestcolumn = currentHeight;
}
});
columns.height(tallestcolumn);
}
$(document).ready(function() {
setEqualHeight($(".grid > .col-md-6"));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment