Salve a tutti,
la richiesta in oggetto è semplice ed ha il vincolo:

devo fare una tabella 3x3 con intestazione. Ovvero:


HEADER COLSPAN 3
HEADER HEADER HEADER
CELL CELL CELL
CELL CELL CELL


Ora dato che devo utilizzare un jquery e che quest'ultimo non vuole colspan in cima, la documentazione suggerisce di aggiungere una riga in testa con "no heigth" in modo che non sia visibile.
Io per rendere non visibile qualcosa ho sempre utilizzato il metodo display:none; ma non va bene in questo caso, devo rendere non visibile la riga utilizzando altezza zero.

Sapete se questa cosa è fattibile? Sapete dove sbaglio?

ecco il codice della tabella:

codice HTML:
<table id="sample2" width="100%" border="1">
   <tr  style="height :0px;">
    <th>&nbsp;</th><th>&nbsp;</th><th>&nbsp;</th>
   </tr>
   <tr>
    <td colspan="3">header</td>
   </tr>
   <tr>
    <th>header</th><th>header</th><th>header</th>
   </tr>
   <tr>
    <td>cell</td><td>cell</td><td>cell</td>
   </tr>
   <tr>
    <td>cell</td><td>cell</td><td>cell</td>
   </tr>
   <tr>
    <td>cell</td><td>cell</td><td>cell</td>
  </tr>     
 
</table>
Grazie in anticipo.
Angelo