I\'m adding list items to a page dynamically with $.get, then appending them to the OL element. Pretty usual to this point.
But jQuery isn\'t aware of these new ite
I found this solution and working fine for me.
makesortable = function(){ $( "#mylist" ).sortable({ ... }) }; ... // after list refresh : makesortable();