<html>
<link rel="stylesheet" href="josh.css">
<body bgcolor="#FFFFFF">

		<div id="Description">
			<table cellpadding="0" cellspacing="0" border="0" width="100%" class="main">
				<tr><td valign="top" class="name">ondblclick</td><td valign="top" nowrap class="compatibility">NN <span class="emphasis">4</span> IE <span class="emphasis">4</span> DOM <span class="emphasis">n/a</span>&nbsp;&nbsp;</td>
				</tr>
				<tr>
					<td valign="top" nowrap class="usage"><p class="literal"></p>
					</td><td valign="top" nowrap class="requirements">Bubbles: Yes; Cancelable: Yes&nbsp;&nbsp;</td>
				</tr>
				<tr>
					<td valign="top" colspan="2" class="description"><p>Fires after the user effects a second successive mouse click or
equivalent action (see <span class="literal">onclick</span> for click
equivalents). A double click requires a specific sequence of mouse
events leading up to it. The sequence is:
<span class="literal">onmousedown</span>, <span class="literal">onmouseup</span>,
<span class="literal">onclick</span>, <span class="literal">onmouseup</span>, and
<span class="literal">ondblclick</span>. The amount of time that can elapse
between the two clicks is determined by the client
computer's mouse control panel settings.
</p>
							</td>
						</tr>
				<tr>
					<td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
				</tr>
						<tr>
							<td colspan="2"><p>			Because the <span class="literal">onclick</span> event fires ahead of
<span class="literal">ondblclick</span>, the associated
<span class="literal">onclick</span> event handler (if any) should perform only
innocuous actions, such as highlighting an element, much like the way
operating system desktop icons operate. If an item requires a double
click, that is the only event that should do something significant.
</p>
							</td>
				</tr>
				<tr>
					<td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
				</tr>
				<tr>
					<td valign="top" colspan="2" class="typicaltargets"><span class="title">Typical Targets</span></td>
				</tr>
				<tr>
					<td colspan="2"><p>			Support for this event in Navigator 4 is limited to the
<span class="literal">a</span> element (but not on the Macintosh); IE 4 or
later and Netscape 6 support the event on renderable elements and the
<span class="literal">document</span> object.
</p>
					</td>
				</tr>
			</table>
		</div>
</body>
</html>