Skip to content

Instantly share code, notes, and snippets.

@djkz
Created July 24, 2012 19:51
Show Gist options
  • Save djkz/3172220 to your computer and use it in GitHub Desktop.
Save djkz/3172220 to your computer and use it in GitHub Desktop.
$(function() {
$( "#draggable" ).draggable();
$( "#droppable" ).droppable({
drop: function( event, ui ) {
$( this )
.addClass( "ui-state-highlight" )
.find( "p" )
.html( "Dropped!" );
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment