This Attribute Event occurs when a user fires mouse Double click on the Element. It is a part of Event Attribute.
Supported Tags: It supports All HTML elements, EXCEPT:
- <base>
- <bdo>
- <br>
- <head>
- <html>
- <iframe>
- <meta>
- <param>
- <script>
- <style>
- <title>
Syntax:
<element ondblclick="script">
Elements: This method can have following attributes:
- <script>
Attribute: The script to be run on ondblclick event Attribute.
Example:
HTML
<!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 > </ center > </ body > </ html > |
Output:
Supported Browsers: The browser supported by ondblclick Event Attribute are listed below:
- Apple Safari 3
- Google Chrome 1
- Edge 12
- Firefox 6
- Opera 11.6
- Internet Explorer 8