jQuery dblclick() Method (original) (raw)

Last Updated : 11 Jan, 2024

**jQuery **dblclick() is an inbuilt method that is used to trigger the double-click event to occur. This method occurs when the selected element will be double-clicked.

**Syntax:

$(selector).dblclick(args);

Here "selector" is the selected element.

**Parameters:

It accepts an optional parameter "args" which specifies a function that does a specific task after double clicking.

**jQuery examples to show the working of dblclick() method:

**Example 1: In the below code, no function is passed to this method.

HTML `

<script>
    //jQuery code to show dblclick method
    $(document).ready(function () {
        $("div").click(function () {
            $("div").dblclick();
        });
    });
</script>

<style>
    div {
        display: block;
        width: 370px;
        padding: 10px;
        font-size: 25px;
        border: 2px solid green;
        align-items: center;
    }
</style>
Click me to trigger dblclick event

`

**Output:

**Example 2: In the below code, the function is passed to dblclick() method.

HTML `

<script>
    <!--jQuery code to show dblclick method-->
        $(document).ready(function () {
            $("button").dblclick(function () {
                $("p").fadeOut();
            });
        });
</script>

<style>
    p {
        display: block;
        padding: 20px;
        color: green;
        width: 300px;
        border: 2px solid green;
        font-size: 25px;
    }
</style>

Welcome to GeeksforGeeks !

Click Me!

`

**Output: