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 26 27 28 29 30 31
| $(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);
$( "<li></li>" ).style(ui.draggable.style()).appendTo(this);
}
});
});
$(document).ready(function(){
$(document).on('click', 'form#listForm', function(event) {
var list = [];
$('#cart').find('ol li').each(function(){
list.push($(this).html());
});
$('#list').val(JSON.stringify(list));
$(this).submit();
$('#list1').val(JSON.stringify(list));
$(this).submit();
});
});
</script> |
Partager