HTML ondblclick Event Attribute

This Attribute Event occurs when a user fires mouse Double click on the Element. It is a part of Event Attribute.

Syntax:

<element ondblclick="script"> 

Elements: This method can have following attributes:

  • <script>

Attribute: The script to be run on ondblclick event Attribute.

Example:

filter_none

edit
close

play_arrow

link
brightness_4
code

<!DOCTYPE html>
<html>
<body>
<center>
<h1 style="color:green;font-style:italic;">GeeksForGeeks</h1>
<h2 style="color:green;font-style:italic;">odblclick Event Attribute</h2>
<button ondblclick="Geeks()">Double-click me</button>
  
<p id="sudo"></p>
  
<script>
function Geeks() {
    document.getElementById("sudo").innerHTML = "Geeks For Geeks";
}
</script>
  
</body>
</html>

chevron_right


Output:
Image

Supported Browsers: The browser supported by ondblclick Event Attribute are listed below:

  • Apple Safari
  • Google Chrome
  • Firefox
  • Opera
  • Internet Explorer


My Personal Notes arrow_drop_up

Image
Check out this Author's contributed articles.

If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.

Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.