I have two divs, neither have a height set in css, as I want to take whatever height they end up as and set the other div to be that height.
The javascript I have is
You can use jQuery to get the height and set it.
var h = $("#prCol1").height(); $("#prCol2").height(h);