Ver Mensaje Individual
  #5 (permalink)  
Antiguo 28/10/2010, 15:06
sysmadryn
 
Fecha de Ingreso: septiembre-2004
Ubicación: La Plata Argentina
Mensajes: 128
Antigüedad: 20 años, 3 meses
Puntos: 9
Respuesta: pre-seleccion de datos

Hola.

Fijate si esto te sirve.

Código HTML:
Ver original
  1. <title>ejemplo</title>
  2. var ulRef = {};
  3. ulRef["UL1"] = "UL2";
  4. ulRef["UL2"] = "UL1";
  5. function pasar(LIid){
  6.   oDom = document.getElementById(LIid);
  7.   document.getElementById(ulRef[oDom.parentNode.id]).appendChild(oDom);
  8. }
  9. </head>
  10.  
  11. <UL id="UL1" style="background-color: pink">
  12. <br />
  13. <LI id="LI01" onclick="pasar(this.id);">Juan
  14. <LI id="LI02" onclick="pasar(this.id);">Pedro
  15. </UL>
  16.  
  17. <UL id="UL2" style="background-color: yellow">
  18. <br />
  19. <LI id="LI03" onclick="pasar(this.id);">Maria
  20. <LI id="LI04" onclick="pasar(this.id);">Laura
  21. </UL>
  22.  
  23.  
  24. </body>
  25. </html>

Saludos