Last active
December 13, 2016 15:10
-
-
Save NickDeckerDevs/c87a0f9e3ce11dfb27e15024bc2c9df2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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