I\'m trying to figure out the logic of how to do this.
I have many images with only a CSS class name, they are created dynamically.
These images are draggabl
Delete the elements in droppable area by implementing the following JS Code :-
$(document).on('click', '.ui-draggable', function(){ if(confirm('Do you want to delete ?')){ $(this).remove(); } });
See the result :