vote up 1 vote down star

Hello,

I have a sortable list and a draggable div:

<div id="draggable">Add Item</div>

<ul id="sortable">
    <li>item 1</li>
    <li>item 2</li>
    <li>item 3</li>
    <li>item 4</li>
    <li>item 5</li>
</ul>

#sortable is already a .sortable(). I should be able to "drag" another item between any of the list items (first, middle, last).

How do I go about this?

Any reply would be greatly appreciated.

Thanks!

flag

1 Answer

vote up 2 vote down check

You need to set the option connectToSortable in the draggable options.

ie:

$('#draggable').draggable({ connectToSortable: 'ul#sortable' });

See the docs for more info

link|flag
thank you for your reply. i will test this as soon as i can. – wenbert Apr 2 at 9:57

Your Answer

Get an OpenID
or

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