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:
<!DOCTYPE html> <html> <body> <center> <h1 style="color:darkred;font-style:italic;">Bajarangi Soft</h1> <h2 style="color:darkred;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 = "Bajarangi Soft"; } </script> </body> </html>