Sortable with dynamic content
问题 So I use jQuery UI sortable plugin to sort photos in a small gallery. $(function() { $("#area").sortable({ items: '.sort-wrapper', cursor: "move", handle: ".photo-handler", opacity: 0.5, scroll: true, scrollSensitivity: 100, scrollSpeed: 5, revert: 100, tolerance: "pointer", update : function () { var order = $('#area').sortable('serialize'); $.ajax({ type : 'POST', url : '/file.php', data : order }); } }).disableSelection(); On the same page I dynamically add and remove photos. PHP script