On Fri, Mar 6, 2009 at 4:16 AM, David Muir <davidkm...@gmail.com> wrote:

>  So you're saying you need to use js to sync the two tables so that you can
> use different styling for the header? Sounds like you should be updating
> your html markup instead.
> Header cells should be using th tags.
> <table>
>     <thead>
>        <tr>
>             <th>Header1</th><th>Header2</th>
>         </tr>
>     </thead>
>     <tbody>
>        <tr>
>           <td>Cell1</td><td>Cell2</td>
>         </tr>
>         .... etc...
>     </tbody>
> </table>
>
>
> Sorry David, you missed the point. i have 2 tables. One has only header so
<thead><tr><th>...</th></tr></thead>
and the other one as only data cell <tbody><tr><td>...</td></tr></tbody>
what you wrote is a typicall table in html.

A.

Reply via email to