Back

Drag and Drop

Copy Below Code View As A Text File Show Text Only Show API Edit Code
                            

//////////////////////////////////////// CSS //////////////////////////////////////////////// <style> .sorta { margin: 0; } .sorta li { list-style: none; margin: 0 0 4px 0; padding: 10px; background-color:#9FCCFC; border: #CCCCCC solid 1px; color:#fff; } </style> /////////////////////////JS <script type="text/javascript"> $(document).ready(function () { $(function () { $(".sorta").sortable({opacity: 0.6, cursor: 'move', update: function () { var order = $(this).sortable("serialize") + '&action=updateRecordsListings'; console.log(order); $.post("aaa2.php", order, function (theResponse) { //$("#contentRight").html(theResponse); }); } }); }); }); </script>