Advertisement
Guest User

Untitled

a guest
Aug 30th, 2014
278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. $(function() {
  2.  
  3. $( "#menu" ).menu();
  4.  
  5. });
  6.  
  7. $( "#sortable" ).sortable();
  8.  
  9. $( "#sortable" ).disableSelection();
  10.  
  11. $( "li" ).draggable();
  12.  
  13. $( "#menu li" ).droppable({
  14.  
  15. drop: function( event, ui ) {
  16.  
  17. $( this )
  18.  
  19. .appendTo( "#items" );
  20.  
  21. }
  22.  
  23. });
  24.  
  25. $( "#items li" ).droppable({
  26.  
  27. drop: function( event, ui ) {
  28.  
  29. $( this )
  30.  
  31. .appendTo( "#menu" );
  32.  
  33. }
  34.  
  35. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement