Skip to content

Instantly share code, notes, and snippets.

@rgbink
Last active August 29, 2015 14:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rgbink/0594bb1c04ab819d5146 to your computer and use it in GitHub Desktop.
Save rgbink/0594bb1c04ab819d5146 to your computer and use it in GitHub Desktop.
Set columns to equal heights
$(document).ready(function() {
$.fn.setAllToMaxHeight = function() {
return this.height(Math.max.apply(this, $.map(this, function(e) {
return $(e).height();
})));
};
$(window).load(function() {
if ($(window).width() > 991) {
$('.widgets.leadthrough.first div[class^="col-"]').setAllToMaxHeight();
$('.widgets.leadthrough.second div[class^="col-"]').setAllToMaxHeight();
}
});
$(window).resize(function() {
if ($(window).width() > 991) {
$('.widgets.leadthrough.first div[class^="col-"]').setAllToMaxHeight();
$('.widgets.leadthrough.second div[class^="col-"]').setAllToMaxHeight();
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment