I am in the process of trying to write a function that will scale the height of a div proportionally to the width of the div. I have been attempting to trigger an event on window.resize but with no luck so far. The width of the div currently resizes as desired but the height resizes outside of the bounds of the containing div elements start overlapping one another and are not wrapping properly. Any help would be much appreciated. Thanks in advance!
jQuery:
$(window).resize(function(){
$('.bgCycle').each(function(){
newHeight = $(this).parent('div').height();
$(this).height(newHeight);
$(this).children('div').height(newHeight);
})
})
CSS:
.bgCycle{
border:1px solid red;
position:relative;
width:100% !important;
}
.imgContainerDiv{
position:relative;
width:100% !important;
}
HTML:
<div class="bgCycle bgCycle1" style="z-index:1;">
<div class="imgContainerDiv">
<img src="http://localhost:8888/aleo/wp-content/uploads/2011/12/img1.jpg" style="width:100%;"/>
</div>
<div class="imgContainerDiv">
<img src="http://localhost:8888/aleo/wp-content/uploads/2011/12/img2.jpg" style="width:100%;"/>
</div>
</div>
<div class="bgCycle bgCycle2" style="z-index:1;">
<div class="imgContainerDiv">
<img src="http://localhost:8888/aleo/wp-content/uploads/2011/12/img3.jpg" style="width:100%;"/>
</div>
<div class="imgContainerDiv">
<img src="http://localhost:8888/aleo/wp-content/uploads/2011/12/img4.jpg" style="width:100%;"/>
</div>
</div>