$(function() {
  $("#box_sotto").sortable({
    forcePlaceholderSize: true,
    revert: 300,
    handle: 'h1',
    update: function(e, ui) {
      var order = $('#box_sotto').sortable('serialize');
      $.post('../dali/index_drag.php', order);
    }
  });
});

