I have been utilizing the following script:
$(document).ready(function() {
$("#test-list").sortable({
handle : '.handle',
start: function(){
$("#success-result").html("loading....");
},
update : function () {
var order = $('#test-list').sortable('serialize');
$("#success-result").load("<?php echo base_url('explorer/processSortable'); ?>?"+order);
}
});
Currently, I am looking to make a request to my URL using the POST method. How should I go about achieving this?