jQuery Examples - dblclick( fn )



Description

The dblclick(fn) method binds a function to the click event of each matched element.

Syntax

Here is the simple syntax to use this method −

selector.dblclick(fn)

Parameters

Here is the description of all the parameters used by this method −

  • fn − A function to bind to the event on each of the set of matched elements.

Example

Following is a simple example showing the usage of this method. Here it binds a function to the dblclick event of each matched element −

<html>
   <head>
      <title>The jQuery Example</title>
      <script type = "text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
      <script type = "text/javascript" language = "javascript">
         $(document).ready(function() {         
            $("#clickButton1").dblclick(function(){
               alert("dblclick event occurred");  
            });
         });
         function clickFirstButton(){		   
            $("#clickButton1").dblclick();
         }  
      </script>
   </head>	

   <body>			
      <form name = "sampleForm">
         <label>Enter Name: </label><input type = "text" id = "result1" title="Enter Name" value = "" ></input><br/><br/>         
         <input type = "button" id = "clickButton1" value = "Double Click Me!" />   <input type = "button" id = "clickButton2" value = "Double Click First Button!" onclick="clickFirstButton();" />
      </form>		
   </body>	
</html>

This will produce following result −

jqueryexamples_events.htm
Advertisements