Ver Mensaje Individual
  #3 (permalink)  
Antiguo 18/08/2010, 13:49
Dany_s
 
Fecha de Ingreso: diciembre-2009
Ubicación: Misiones
Mensajes: 867
Antigüedad: 14 años, 4 meses
Puntos: 65
Respuesta: jquery append en IE7

a mi me funciona

Código HTML:
Ver original
  1.     <title>Pruebas</title>
  2. <script src="http://code.jquery.com/jquery-latest.js"></script>
  3. $(function(){
  4.     table = $('table');
  5.     table.append($('<tr>').append($('<td>').append("nuevo")));
  6. });
  7. </head>
  8.     <table>
  9.         <tr>
  10.             <td>viejo</td>
  11.         </tr>
  12.     </table>
  13. </body>
  14. </html>