26/07/2011, 06:33
|
| | Fecha de Ingreso: diciembre-2009 Ubicación: Misiones
Mensajes: 867
Antigüedad: 14 años, 11 meses Puntos: 65 | |
Respuesta: jQuery evitar duplicados en el drag y drop
Código HTML:
Ver original <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.14/jquery-ui.min.js"></script> $( function(){ $( "#uno li" ).draggable({helper:'clone'}); $( "#dos" ).droppable({ accept: "#uno li", drop: function( event, ui ){ $("#dos").append( ui.draggable ); } }); }); ul{min-height:50px; width:50px; background:#ccc}
|