Execute a script when a mouse button is released over an element in HTML?


When the mouse button is released over an element, the onmouseup event triggers. You can try to run the following code to implement onmouseup attribute −

Example

<!DOCTYPE html>
<html>
   <body>
      <h3 id = "myid" onmousedown = "mouseDown()" onmouseup = "mouseUp()">
         This is demo heading.
      </h3>
      <p>Click above and then release.</p>
      <script>
         function mouseDown() {
            document.getElementById("myid").style.color = "yellow";
         }
         function mouseUp() {
            document.getElementById("myid").style.color = "blue";
         }
      </script>
   </body>
</html>

Updated on: 03-Mar-2020

126 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements