| |
jQuery UI |
Okay, I *may* have found a solution from some of the other threads
I've seen. So far, this seems to work:
$("#topFriends").sortable();
$('#topFriends').droppable({
accept: '#newestFriends',
drop: function(ev, ui) {
$(this).sortable("refresh");
return false;
}