jQuery dblclick() Method
jQuery dblclick() Method
The jQuery dblclick()
method is used for the following 2 purpose
- To run a callback when a specified element is double clicked.
- To trigger the dblclick event of a specified element.
Run a Callback
In the following example, we will run a callback function when a button is double clicked.
Example
HTML Editor
<!DOCTYPE html>
<html lang="en-US">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body>
<h1>jQuery dblclick() Method</h1>
<p>Double click on the button to alert</p>
<button>Double Click Me</button>
<script>
$(document).ready(function(){
$("button").dblclick(function(){
alert("Button doubled clicked");
});
});
</script>
</body>
</html>
Syntax
$(selector).dblclick(callback);
Parameter Values
Value | Type | Explanation |
---|---|---|
callback | Optional | Specifies a function to be called once the element is double clicked. |
Trigger a dblclick Event
In the following example, we will trigger a dblclick event when a paragraph is clicked.
Example
HTML Editor
<!DOCTYPE html>
<html lang="en-US">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body>
<h1>jQuery dblclick() Method</h1>
<p>Click this paragraph to trigger dblclick event.</p>
<button>Double Click Me</button>
<script>
$(document).ready(function(){
$("button").dblclick(function(){
alert("Button doubled clicked");
});
$("p").click(function(){
$("button").dblclick();
});
});
</script>
</body>
</html>
Reminder
Hi Developers, we almost covered 99.5% of jQuery Tutorials with examples for quick and easy learning.
We are working to cover every Single Concept in jQuery.
Please do google search for:
Join Our Channel
Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.
This channel is primarily useful for Full Stack Web Developer.