Proba lo siguiente: con
style
en el <head >
Código HTML:
<head>
<style>
#oculto{visibility:hidden};
</style>
</head>
y en el cuerpo...
Código HTML:
<body>
<table>
<tr>
<td>
HOLA
</td>
</tr>
<tr id=oculto>
<td>
OCULTO
</td>
</tr>
</table>
</body
si pruebas... te ocultara el
2do TR
verifica si es lo que necesitas..
salu2