Skip to content

Instantly share code, notes, and snippets.

@NickDeckerDevs
Last active December 13, 2016 15:10
Show Gist options
  • Save NickDeckerDevs/c87a0f9e3ce11dfb27e15024bc2c9df2 to your computer and use it in GitHub Desktop.
Save NickDeckerDevs/c87a0f9e3ce11dfb27e15024bc2c9df2 to your computer and use it in GitHub Desktop.
equalheight = function (container) {
var maxHeight = 0;
jQuery(container).each(function() {
var elem = jQuery(this);
var currentHeight = elem.outerHeight();
console.log(currentHeight);
maxHeight = maxHeight < currentHeight ? currentHeight : maxHeight;
});
jQuery(container).css('height', maxHeight+'px');
}
function loadAndResize() {
equalheight('.hero-insert-container > .row-fluid > div');
}
jQuery(window).on('resize', function() {
loadAndResize();
});
jQuery(window).on('load', function() {
loadAndResize();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment