Javascript examples for DOM Event:Element Event Attribute
The onmouseup event occurs when a user releases a mouse button over an element.
Bubbles | Yes |
---|---|
Cancelable | Yes |
Supported HTML tags: | All HTML elements, EXCEPT: <base>, <bdo>, <br>, <head>, <html>, <iframe>, <meta>, <param>, <script>, <style>, and <title> |
<!DOCTYPE html> <html> <body> <p id="demo">Click me.</p> <script> document.getElementById("demo").onmousedown = function() {mouseDown()}; document.getElementById("demo").onmouseup = function() {mouseUp()}; function mouseDown() {// ww w .j ava 2 s .c o m document.getElementById("demo").innerHTML = "The mouse button is held down."; } function mouseUp() { document.getElementById("demo").innerHTML = "You released the mouse button."; } </script> </body> </html>