I have a section like - <section id="left_side"> //Some crap here.</section>
and an aside element like this - <aside id="right_side"> //Some crap here.</aside>
What I want to do is when the height of the aside container is greater than the section container, then using jQuery I want it's height to expand and be greater or equal to the aside container.
But, at the same time if the aside is smaller than the section container then I want it's height to expand and be equal to the section container.
I have absolutely no idea how to do this using jQuery.