Ok, so I have the following layout:
<div class="double_column_left">
//Left responsive content
</div>
<div class="double_column_right">
//Right responsive content
</div>
<div class="double_column_left">
//More left responsive content
</div>
<div class="double_column_right">
//More right responsive content
</div>
What I need is for the height of each set of columns (each left and right next to each other) to be the same value. So if the left is taller than the right, it would set the right column to the height of the left in Javascript, and vice versa.
This seems like something easily done in Javascript/jQuery, somehow looping through the page and matching each set of div's based on the order it comes across them each time the page is resized; but I've never really done anything like this before and can't think of how to do it.
Any ideas?