Skip to content
Extraits de code Groupes Projets
group-edit.js 274 octets
Newer Older
  • Learn to ignore specific revisions
  • $(function() {
    		$("li .person").draggable({
    				helper: 'clone',
    				cursor: 'move'
    		});
    		$("li .group").droppable({
    			drop: function(event, ui) {
            //alert('dropped!');
    				$("<li class='person'></li>").text(ui.draggable.text()).appendTo(this);
    			}
    		});
    
    
    	});