ondragover event
Fires on the target element continuously while the user drags the object over a valid drop target.
HTML Attribute | <element ondragover = "handler(event)"> |
Event Property | object.ondragover = handler; |
attachEvent Method | object.attachEvent("ondragover", handler) |
addEventListener Method | object.addEventListener("dragover", handler, useCapture) |
Synchronous | No |
Bubbles | Yes |
Cancelable | Yes |
- pEvtObj [in]
Type: IHTMLEventObj
There are no standards that apply here.
The HTMLElementEvents::ondragover event fires on the target object after the HTMLElementEvents::ondragenter event has fired.
When scripting custom functionality, use the IHTMLDialog::returnValue property to disable the default action.
Calls the associated event handler.
To invoke this event, do one of the following:
- Drag the selection over a valid drop target within the client.
- Drag the selection to a valid drop target within another window.