Ver Mensaje Individual
  #3 (permalink)  
Antiguo 01/11/2011, 04:56
Avatar de jor_0203
jor_0203
 
Fecha de Ingreso: octubre-2011
Ubicación: mexico
Mensajes: 760
Antigüedad: 12 años, 6 meses
Puntos: 8
Respuesta: dezplazar menu con el maus tanto izquierda como derecha

les dejo otro ejemplo padrisimo
esto me motiva mucho

Código PHP:
Ver original
  1. <html>
  2.     <head>
  3.         <title>System Drag And Drop Example</title>
  4.         <script type="text/javascript">
  5.             function pasar() {
  6.                 alert("Dropped!");
  7.             }
  8.         </script>
  9.     </head>
  10.     <body>
  11.         <p>selecciona la palabra jorge y arrastrala a la otra casilla </p>
  12.         <input type="text" value="jorge" /><input type="text" ondrop="pasar()" />
  13.     </body>
  14. </html>