Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <ul>
  2. <li>Element 123</li>
  3. <li>Element 867</li>
  4. <li>Element 326</li>
  5. <li>Element 893</li>
  6. </ul>
  7.  
  8. $( "#list1" ).sortable({
  9. helper: 'clone',
  10. connectWith: "#list2,#list3,#list4",
  11. dropOnEmpty: true
  12. }).disableSelection();
  13. $( "#list2" ).sortable({
  14. connectWith: "#list1,#list3,#list4",
  15. dropOnEmpty: true
  16. }).disableSelection();
  17. $( "#list3" ).sortable({
  18. connectWith: "#list1,#list2,#list4",
  19. dropOnEmpty: true
  20. }).disableSelection();
  21. $( "#list4" ).sortable({
  22. connectWith: "#list1,#list2,#list3",
  23. dropOnEmpty: true
  24. }).disableSelection();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement