ondblclick event
Fires when the user double-clicks the object.
![]() |
Syntax
| HTML Attribute | <element ondblclick = "handler(event)"> |
|---|---|
| Event Property | object.ondblclick = handler; |
| attachEvent Method | object.attachEvent("ondblclick", handler) |
| addEventListener Method | object.addEventListener("dblclick", handler, useCapture) |
Event information
| Synchronous | No |
|---|---|
| Bubbles | No |
| Cancelable | No |
Event handler parameters
- pEvtObj [in]
-
Type: IHTMLEventObj
Standards information
- HTML 4.01 Specification, Section 18.2.3
Remarks
The order of events leading to the HTMLDocumentEvents::ondblclick event is HTMLDocumentEvents::onmousedown, HTMLDocumentEvents::onmouseup, HTMLDocumentEvents::onclick, HTMLDocumentEvents::onmouseup, and then HTMLDocumentEvents::ondblclick. Actions associated with any of these events are executed when the HTMLDocumentEvents::ondblclick event fires.
Initiates any action that is associated with the event.
To invoke this event, do one of the following:
- Click the left mouse button twice in rapid succession over an object. The user's double-click must occur within the time limit specified by the user's system.
Send comments about this topic to Microsoft
Build date: 11/12/2012
