dblclick | ondblclick event

Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
2 out of 4 rated this helpful - Rate this topic

Fires when the user double-clicks the object.

HTML 4.01 Specification, Section 18.2.3

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

SynchronousNo
BubblesNo
CancelableNo

Event handler parameters

pEvtObj [in]

Type: IHTMLEventObj

Standards information

Remarks

The order of events leading to the ondblclick event is onmousedown, onmouseup, onclick, onmouseup, and then ondblclick. Actions associated with any of these events are executed when the 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.

Examples

This example uses the ondblclick event to add items to a list box when the user double-clicks in the text box.

Code example: http://samples.msdn.microsoft.com/workshop/samples/author/dhtml/refs/ondblclickEX.htm



<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function addItem()
{
sNewItem = new Option(txtEnter.value)
selList.add(sNewItem);
}
</script>
</head>
<body>
<p>Enter text and then double-click in the text box to
   add text to the list box.</p>
<input type="text" name="txtEnter" value="Enter_text" 
   ondblclick="addItem()"><br><br>
<select name="selList" size="5"></select>
</body>
</html>

See also

a
address
applet
area
b
bdo
big
blockQuote
body
button
caption
center
cite
code
custom
dd
dfn
dir
div
dl
document
dt
em
embed
fieldSet
font
form
hn
hr
i
img
input type=button
input type=checkbox
input type=file
input type=image
input type=password
input type=radio
input type=reset
input type=submit
input type=text
kbd
label
legend
li
listing
map
marquee
menu
nextID
noBR
object
ol
p
plainText
pre
rt
ruby
s
samp
select
small
span
strike
strong
sub
sup
table
tBody
td
textArea
tFoot
th
tHead
tr
tt
u
ul
var
window
xmp
SVGSVGElement

 

 

Send comments about this topic to Microsoft

Build date: 1/23/2013

Did you find this helpful?
(1500 characters remaining)

Community Additions

© 2013 Microsoft. All rights reserved.