Ver Mensaje Individual
  #2 (permalink)  
Antiguo 15/04/2011, 05:37
Dany_s
 
Fecha de Ingreso: diciembre-2009
Ubicación: Misiones
Mensajes: 867
Antigüedad: 14 años, 5 meses
Puntos: 65
Respuesta: No puedo agregar mas items a una lista

Código HTML:
Ver original
  1.     <head>
  2.         <title>Ejemplo</title>
  3.         <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
  4.         <script>
  5.  
  6. $( function(){
  7.  
  8.     var lifilter = $('#filter').html() ;
  9.     $("#baddfilter").click(function(){
  10.         $("#filter").append(lifilter);
  11.         return false;
  12.     });
  13.  
  14. });
  15.     </script>
  16.  
  17.     <style>
  18.  
  19.     </style>
  20.  
  21. </head>
  22.  
  23. <ol id='filter'>
  24.     <li>
  25.         <select>
  26.             <option>0001</option>
  27.         </select>
  28.         <select>
  29.             <option>M</option>
  30.         </select>
  31.     </li>
  32. </ol>
  33. <a href="#0" id='baddfilter'>Agregar filtro</a>
  34.  
  35. </body>
  36. </html>