jquery dblclick() method
Translation results:
dblclick
UK [dblk'lɪk] US [dblk'lɪk]
Double-click, double-click (mouse)
jquery dblclick() methodsyntax
Function:When an element is double-clicked, the dblclick event occurs. A click occurs when the mouse pointer is over an element and the left mouse button is pressed and released. If two clicks occur within a short period of time, it is a double click event. The dblclick() method triggers the dblclick event, or specifies a function to run when the dblclick event occurs. Tip: Problems may arise if dblclick and click events are applied to the same element.
Trigger dbclick event syntax: $(selector).dblclick()
Bind the function to the dbclick event syntax: $ (selector).dblclick(function)
Parameters:
Description | |
Optional. Specifies the function to run when the dblclick event occurs. |