jQuery dblclick() with Example


The dblclick() method in jQuery is used to trigger the dblclick event, which occurs when an element is double-clicked.

Syntax

The syntax is as follows −

$(selector).dblclick()

Example

Let us now see an example to implement the jQuery dblclick() method −

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
   $(document).ready(function(){
      $(document).ready(function() {
         $("p").dblclick(function() {
            alert('Paragraph double clicked!')
         });
      });
   });
</script>
</head>
<body>
<h2>Demo Heading</h2>
<p>This is a paragraph. Double click here.</p>
</body>
</html>

Output

This will produce the following output −

Double click on the paragraph to generate an alert box −

Updated on: 12-Nov-2019

130 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements