I'm new to jQuery. I have implemented a drag and drop scenario. My question is if jQuery automatically modifies the internal DOM after a succesfull drag and drop action is performed.
This is my scenario. Initially my dropable element #droppableContainer is empty. But after I dropped some elements into it, the droppable element is still empty!!!
Below is some test code I wrote to iterate through all children elements of my droppable:
$('#droppableContainer').children().each(function(item) {
alert($(this).attr('id'));
});
The above test code is executed separately, after all draggable and droppable events, but nothing gets printed.
Thanks in advance!!!