Prev Demo
Mouse Down And Mouse Up
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title>Demo</title> </head> <body> <h2> click the text to change the color of the text </h2> <p id="demo" onmousedown="mouseDown()" onmouseup="mouseUp()"> TechFunda is a online tutorials </p> <script> function mouseDown() { document.getElementById("demo").style.color = "blue"; } function mouseUp() { document.getElementById("demo").style.color = "lime"; } </script> </body> </html>
Note: We DO NOT save your trial code in our database.
Output