$('table.dosort > tbody').sortable({
axis: 'y',
update: function (event, ui) {
var datastring = $(this).sortable('serialize');
$.ajax({
type: "POST",
url: "ajax.php",
data: datastring + "&reorder=fuse&type=program&program_id=" + $(this).data('program-id'),
success: function(data) {
bootbox.alert(data);
},
error: function() {
bootbox.alert('error handing here');
}
});
}
});