I have a div that is 'designated' as droppable: $( "#droppable_div" ).droppable
.
On the other hand, I have multiple draggable divs that are made draggable by assigning a CSS class which has been designated as draggable: $(".draggable_css").draggable
.
Now, both these are in a form. So, when I submit a button, I need to test whether atleast one of the draggable items/divs have been dropped on the droppable div.
Can someone please suggest how this can be done?