<html>
<body>
<h1>HTML DOM Events</h1>
<h2>The ondblclick Event</h2>
<p>Use the HTML DOM to assign an "ondblclick" event to a p element.</p>
<p id="demo">Double-click me.</p>
<script>
document.getElementById("demo").ondblclick = function() {myFunction()};
function myFunction() {
document.getElementById("demo").innerHTML = "I was double-clicked!";
}
</script>
</body>
</html>