I am trying to get rid of tables in one of my pages, and can't seem to figure out how to do this with div and span.
The current_buffer div has content dynamically loaded.
The thing I like about the table cells is that they grow as needed, and I never have figured out how to make a span do that.
Regards
Marts
The current_buffer div has content dynamically loaded.
The thing I like about the table cells is that they grow as needed, and I never have figured out how to make a span do that.
Code:
<table> <tr> <td valign="top"> <button id="show_buffer" style="width: 200px;" class="ui-state-default ui-corner-all">Show Current Buffer</button><br /> <button id="refresh_buffer" style="width: 200px;" class="ui-state-default ui-corner-all">Refresh Current Buffer</button> </td> <td><div id="current_buffer"></div></td> </tr> </table>
Marts
Comment