Hi all, I have a div which I've set a sortable to, the sortable items in the div are images.
$("div#pics_new").sortable( { axis: 'x', cursor: 'move', opacity: 0.7, //0.01 - 1 placeholder: 'newplace', forcePlaceholderSize: true, update: SetOrder }); On document.ready the div is loaded empty and the images are dynamically being add to it. I experience the sortable __does__ work this way, but a lot worse than how it would if the images were there right from the start. Does this too have something to do with rebinding events? Because the images weren't there on load?