0
I am developing an accordion that each item will receive a list of accordion. To dynamically sort the items of each accordion, I’m using jquery draggable. For the first accordion list jquery works perfectly. However, for the second list jquery draggable does not work.
Enter some code to help members understand the problem.
– Ricardo
Post your code. You are using the
accept
in his Droppable ?– Diego Souza
For each accordion node I add the code below: $(". sortable"). sortable({ revert: true, update: Function() {...} }); $("#draggable"). draggable({ connectToSortable: ". sortable", helper: "clone", revert: "invalid" });
– user3202066