A repository of over 1000 quality jQuery plugins

jQuery .dblclick()

Learn all about the jQuery function .dblclick().

This method is a shortcut for .on( "dblclick", handler ) in the first two variations, and .trigger( "dblclick" ) in the third. The dblclick event is sent to an element when the element is double-clicked. Any HTML element can receive this event. For example, consider the HTML:

1
2
3
4
5
6
<div id="target">
Double-click here
</div>
<div id="other">
Trigger the handler
</div>

figure 1

The event handler can be bound to any <div>:

1
2
3
$( "#target" ).dblclick(function() {
alert( "Handler for .dblclick() called." );
});

Now double-clicking on this element displays the alert:

Handler for .dblclick() called.

To trigger the event manually, call .dblclick() without an argument:

1
2
3
$( "#other" ).click(function() {
$( "#target" ).dblclick();
});

After this code executes, (single) clicks on Trigger the handler will also alert the message.

The dblclick event is only triggered after this exact series of events:

  • The mouse button is depressed while the pointer is inside the element.
  • The mouse button is released while the pointer is inside the element.
  • The mouse button is depressed again while the pointer is inside the element, within a time window that is system-dependent.
  • The mouse button is released while the pointer is inside the element.

It is inadvisable to bind handlers to both the click and dblclick events for the same element. The sequence of events triggered varies from browser to browser, with some receiving two click events before the dblclick and others only one. Double-click sensitivity (maximum time between clicks that is detected as a double click) can vary by operating system and browser, and is often user-configurable.