Stockton,
You can't use
<div> like that to segment part(s) of a table.
Use
<tbody> instead. You may have as many
<tbody>s as you like within a table, each containing any number of
<tr>s , each containing any number of
<td>s .
<td>s may contain
<div>s but do not generally need to as each
<td> is directly addressable by giving it an id.
To hide/show a
<tbody> with JavaScript, use:
tttt.style.display = 'none';
tttt.style.display = '';
where
tttt is a reference to a particular
<tbody> obtained (for example) with
document.getElementById(...) .
Last edited by Airshow; Sep 1st, 2009 at 7:15 pm.
Reputation Points: 302
Solved Threads: 358
WiFi Lounge Lizard
Offline 2,524 posts
since Apr 2009