vote up 0 vote down star
1

I am using jQuery UI and can create an simple drag 'n drop list. But now, I want to drop the element into an other list. jQuery always thinks the item has been droppen on the false place and slides it back into the origin list.

flag

75% accept rate

1 Answer

vote up 1 vote down check

I think the solution is found here: http://ui.jquery.com/demos/sortable/#connect-lists

and its done something like this:

$(function() {
    	$("#sortable1, #sortable2").sortable({
    		connectWith: ['.connectedSortable']
    	});
    });
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.