jquery sortable with ajax

Solutions on MaxInterview for jquery sortable with ajax by the best coders in the world

showing results for - "jquery sortable with ajax"
Angèle
28 Jan 2019
1$('#element').sortable({
2    axis: 'y',
3    update: function (event, ui) {
4        var data = $(this).sortable('serialize');
5
6        // POST to server using $.post or $.ajax
7        $.ajax({
8            data: data,
9            type: 'POST',
10            url: '/your/url/here'
11        });
12    }
13});
Louna
01 Apr 2016
1dfsdfsdfsdf