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:
<!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
filter_none
Output:
Supported Browsers: The browser supported by ondblclick Event Attribute are listed below:
- Apple Safari
- Google Chrome
- Firefox
- Opera
- Internet Explorer