Ver Mensaje Individual
  #1 (permalink)  
Antiguo 28/03/2011, 20:07
machetiao
 
Fecha de Ingreso: marzo-2011
Mensajes: 4
Antigüedad: 13 años, 2 meses
Puntos: 0
se me desaparecen los <tr>

hay computadores que me aparecen los <tr> y hay computadores que no aparecen, con distintos browser hay alguna configuracion para eso o algun cambio, el codigo es:
este es html esta en una pagina
<tr id = "plus_WorkEx">
</tr>
el javascript ajax

function funcionajax()
{
ajax=nuevoAjax();
ajax("POST", url, true);
ajax.onreadystatechange=function()
{
if (ajax.readyState==4)
{
document.getElementById('plus_WorkEx').innerHTML = ajax.responseText;
}
}
ajax.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
ajax.send(valores);
}

php con html

while ($resultado = mysql_fetch_array($result)){
?>
<tr id =incremtr<?php echo $resultado['id']?> border = "1">
<td> <input type="text" id =increm<?php echo $resultado['id']?> value = <?php echo $resultado['id']?> disabled></td>
</tr>
<tr id =Employer<?php echo $resultado['id']?> border = "1">
<td>Employer</td>
<td>
<input type="text" id =Employer<?php echo $resultado['id']?> value = <?php echo $resultado['Employer']?> disabled>
</td>
</tr>
<tr>
<tr id =EmployerPhone<?php echo $resultado['id']?>>
<td>EmployerPhone</td>
<td>
<input type="text" id =EmployerPhone<?php echo $resultado['id']?> value = <?php echo $resultado['EmployerPhone']?> disabled>
</td>
</tr>
<tr id =JobTitle<?php echo $resultado['id']?>>
<td>JobTitle</td>
<td>
<input type="text" id =JobTitle<?php echo $resultado['id']?> value = <?php echo $resultado['JobTitle']?> disabled>
</td>
</tr>
<tr id=StartDatew<?php echo $resultado['id']?>>
<td>StartDate</td>
<td>
<input type="text" id =StartDatew<?php echo $resultado['id']?> class="caja" value = <?php echo $resultado['StartDate']?> disabled>
</td>
</tr>
<tr id =EndDatew<?php echo $resultado['id']?>>
<td>EndDate</td>
<td>
<input type="text" id =EndDatew<?php echo $resultado['id']?> value = <?php echo $resultado['EndDate']?> disabled>
</td>
</tr>
<tr id=botones<?php echo $resultado['id']?>>
<td>
<input type="button" value="eliminar" onclick="Elimina_workEx(increm<?php echo $resultado['id']?>)">
</td>
</tr>
<?php }
}

estos son los <tr> que no aparecen en algunos browser, pero son de distintas maquinas, alguna configuracion que solucione esto