EnhathAppeant
New Member
I want to allow my users to sort some items with jQuery UI sort ( http://jqueryui.com/sortable/#default )I have added all required files and it's working. I have problem with saving that new order (array) in PHP.\[code\]$(function() { $(function() { $( "#sortable" ).sortable(); $( "#sortable" ).disableSelection(); });var sorted = $( ".selector" ).sortable( "serialize", { key: "sort" } );});\[/code\]Question is: How to transport that array of IDs to PHP after submitting form?Note: I am not very familiar with JavaScript/jQuery