Edito:
Esta vez me madrugaste voz @furoya
@hosyou :
Por favor cuando hagas este tipo de preguntas, poné todo el código completo y no fragmentado.
Tu html está bastante sucio, y los id no pueden ser ni comenzar por un número. Asi y todo entiendo el problema (que no se da en IE), una posible solución, si es que la estructura se repite es
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <script type="text/javascript"> //<![CDATA[
function ShowHide(fila) {
if ((document.getElementById(fila).style.display) == 'block') {
document.getElementById(fila).style.display = 'none';
}
else {
document.getElementById(fila).style.display = 'block';
}
}
//]]>
<table border='1' style="border-collapse:separate;empty-cells:hide;"> <th align='center' width='100'>N° Id
</th> <th align='center' width='100'>DNI
</th> <th align='center'>Nombre
</th> <th align='center'>E-mail
</th> <th align='center'> </th>
<td align='center'>ID_1
</td> <td align='center'>DNI_1
</td> <td align='center' colspan='5'> <table border='1' align="center" style="display: none;" id='a1111' > <th align='center' colspan='4'>TABLA 2
</th> <td align='center'>ASDAD
</td> <td align='center'>ASDAD
</td> <td align='center'>ASDAD
</td> <td align='center'>ASDAD
</td>
<td align='center'>ID_2
</td> <td align='center'>DNI_2
</td> <td align='center' colspan='5'> <table border='1' align="center" style="display: none;" id='a1112' > <th align='center' colspan='4'>TABLA 3
</th> <td align='center'>ASDAD
</td> <td align='center'>ASDAD
</td> <td align='center'>ASDAD
</td> <td align='center'>ASDAD
</td>
Saludos