I have two html elements and I want to bind the size of one to the size of another like:
<div id="elem1"> </div>
<div style="height:some binding expression to the height of elem1;
width:another binding expression to width of elem1"></div>
Is this even possible? The binding only needs to happen once.