Clicca e rilascia 2






<!DOCTYPE html>
<html>
<body>

<p>This example uses the HTML DOM to assign an "onmousedown" and "onmouseup" event to a p element.</p>

<p id="demo">Click me.</p>

<script>
document.getElementById("demo").onmousedown = function() {mouseDown()};
document.getElementById("demo").onmouseup = function() {mouseUp()};

function mouseDown() {
document.getElementById("demo").innerHTML = "The mouse button is held down.";
}

function mouseUp() {
document.getElementById("demo").innerHTML = "You released the mouse button.";
}
</script>

</body>
</html>










( cliccaerilascia2.html )- by Paolo Puglisi - Modifica del 17/12/2023