Javascript DOM ondblclick Event via HTML Tag ondblclick function

Introduction

In JavaScript:

object.ondblclick = function(){
       myScript};

This example uses the HTML DOM to assign an "ondblclick" event to a p element.

View in separate window

<!DOCTYPE html>
<html>
<body>
<p id="demo">Double-click me.</p>

<script>
document.getElementById("demo").ondblclick = function() {myFunction()};

function myFunction() {/*ww  w.ja v a 2  s .  co  m*/
  document.getElementById("demo").innerHTML = "I was double-clicked!";
}
</script>

</body>
</html>
Bubbles:
Yes
Cancelable:
Yes
Event type:
MouseEvent
Supported HTML tags:












All HTML elements,
EXCEPT:
<base>,
<bdo>,
<br>,
<head>,
<html>,
<iframe>,
<meta>,
<param>,
<script>,
<style>, and
<title>.



PreviousNext

Related