1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
| <script>
$(function() {
$( ".essai li" ).draggable({
appendTo: "body",
revert: 'invalid'
});
$( "#cart ol" ).droppable({
drop: function( event, ui ) {
$(this).find( ".placeholder" ).remove();
$(ui.draggable).hide();
$( "<li></li>" ).text(ui.draggable.text()).appendTo(this);
}
});
});
----------------------------resultat------------------
$(function(){
$('.myButton').click(function(e){
var list = [];
$('#cart').find('ol.ui-droppable li').each(function(){
list.push($(this).html());
});
alert(list);
});
});
</script> |
Partager