I'd love to change the order of HTML elements from:
<div id="d1">
<div id="dd1"></div>
<table id="t1"></table>
<div id="be_top"></div>
</div>
to:
<div id="d1">
<div id="dd1"></div>
<div id="be_top"></div>
<table id="t1"></table>
</div>
Does anyone have ideas about how to do this? Thanks!