Home » HTML » Html miscellaneous » Question
  1. The _________ event is fired on the element where the drop occurred at the end of the drag operation.
    1. dragenter
    2. drag
    3. drop
    4. dragstart
    5. None of these
Correct Option: C

The drop event is fired on the element where the drop occurred at the end of the drag operation. A listener would be responsible for retrieving the data being dragged and inserting it at the drop location. Whenever user starts to drag an element, dragstart is fired. When draggable element enters a drop target then dragenter event is occurred. When element is being dragged, drag event is happened.



Your comments will be displayed only after manual approval.