Help swapping list elements
Hi!
I'm looking for a way to swap list elements with drag and drop.
Similar to jquery ui sortable, but not the same. I couldn't find
anything that suits my needs.
For example, with the list
-a
-b
-c
dragging element (a) and dropping over (c) should produce the
following result. Note it's different from sortable:
-c
-b
-a
Can somebody give me some advice on how to do this?
Thanks in advance!