Created
September 23, 2016 14:43
-
-
Save NickDeckerDevs/19883391e4cf5d53f4c4b715c443d02e 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
<div class="icon-third-container"> | |
<div class="span4"> | |
<div class="row-fluid"> | |
<div class="span12"> | |
<div class="icon-third-title green-background bg1"> | |
<a href="/products/neutralization-tanks-systems-accessories"> | |
<h3>Neutralization Tanks, Systems & Accessories</h3> | |
</a> | |
</div> | |
</div> | |
</div> | |
<div class="row-fluid"> | |
<div class="span12"> | |
<div class="icon-third-content"> | |
<a href="/products/neutralization-tanks-systems-accessories"> | |
<p>As the industry leader in acid neutralization and dilution equipment, we customize or fabricate tanks and accessories to fit perfectly with your project’s guidelines, budget and timetable. </p> | |
</a> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<script> | |
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('.icon-third-title'); | |
equalheight('.icon-third-content'); | |
} | |
jQuery(window).on('resize', function() { | |
loadAndResize(); | |
}); | |
jQuery(window).on('load', function() { | |
loadAndResize(); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment