Ver Mensaje Individual
  #6 (permalink)  
Antiguo 08/11/2010, 05:40
Dany_s
 
Fecha de Ingreso: diciembre-2009
Ubicación: Misiones
Mensajes: 867
Antigüedad: 14 años, 11 meses
Puntos: 65
Respuesta: ampliación o nuevo enfoque - añadir tr entre 2 trs

claro con evento live

proba traer esto:
Código HTML:
Ver original
  1. <tr><td><div class="nuevo"></div></td></tr>

y proba
Código HTML:
Ver original
  1.     <head>
  2.         <title>Ejemplon</title>
  3.         <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
  4.     </head>
  5.         <script type="text/javascript">
  6.  
  7.         $( function(){
  8.             $('.existe').click( function (){
  9.                 var tr = $(this).closest('tr');
  10.                 $.ajax({
  11.                     url:'laURL',
  12.                     success: function(data){
  13.                         tr.after(data);
  14.                     }
  15.                 })
  16.             });
  17.             $('.nuevo').live('click', function(){
  18.                 alert("click en nuevo");
  19.             });
  20.         });
  21.  
  22.         </script>
  23.         <style>
  24.             .existe{height:20px; width:50px; background:blue}
  25.             .nuevo{height:20px; width:50px; background:red}
  26.         </style>
  27.     <body>
  28.  
  29.     <table>
  30.         <tr><td><div class="existe"></div></td></tr>
  31.         <tr><td><div class="existe"></div></td></tr>
  32.     </table>
  33.  
  34.     </body>
  35. </html>