I have 8 tabs ranging in all different heights. Each having a similar class, and the active tab having its own class.
How can i get the height of the active tab and add it as a style to its parent? (When a different tab becomes active, the new height needs to be added.)
The code below is an example of what im trying to get. Thanks.
<div id="parent" style="height: 1426px;">
<div class="child"></div> ( height: 2245px )
<div class="child"></div> ( height: 983px )
<div class="child"></div> ( height: 3004px )
<div class="child active"></div> ( height: 1426px )
<div class="child"></div> ( height: 1209px )
</div>