Hola, tengo un problema, y es el siguiente...
Estoy actualizando una web, simple, sus links estan en una tabla, en cada <tr> hay un link, asi:
<table width="110" height="250" cellspacing="0" cellpadding="2" bordercolor="#000000" frame="lhs" bgcolor=C59B63>
<tr heigth="30">
<td valign="top">
<a href="#" onClick="javascript:action('1');">
<?php if($id=='1') {echo "<font color=#000000>Comidas</font>";} else {echo "Comidas";} ?>
</a>
</td>
</tr>
</table>
y asi sucesivamente, '2', '3', '4'....
ahora, en el link '5', tiene un titulo, llamemosle "Postre":
<tr heigth="30">
<td valign="top">
<a href="#" onClick="javascript:action('5');">
<?php if($id=='5') {echo "<font color=#000000>Postre</font>";} else {echo "Postre";} ?>
</a>
</td>
</tr>
el sgt <tr> tiene varios links que provienen, supuestamente, despues de darle click a postre, osea, aparte de que cuando le doy click a postre aparece toda la informacion de Postre, ademas de eso se deben mostrar los sublinks q contiene el sgt <tr>:
<tr style="display:none" heigth="30">
<td valign="top">
<a href="#" onClick="javascript:action('5_1');">
<?php if($id=='5_1') {echo "<font color=#000000>Postre 1</font>";} else {echo "Postre 1";} ?>
</a>
<a href="#" onClick="javascript:action('5_2');">
<?php if($id=='5_2') {echo "<font color=#000000>Postre 2</font>";} else {echo "Postre 2";} ?>
</a>
</td>
</tr>
Se supone, otra vez, que este <tr> con la opcion (style="display:none") esta oculto, y cuando yo presiono el link Postre debe de aparecer los sub links postre 1, postre 2....
Claro que todo esto esta en la misma tabla, todo esta bien, solo que no puedo mostrarlos otra vez!