Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<script>
function mouseDown()
{
document.getElementById("p1").style.color="red";
}
function mouseUp()
{
document.getElementById("p1").style.color="green";
}
</script>
<body>
<p id="p1" onmousedown="mouseDown()" onmouseup="mouseUp()">Click the text! The mouseDown() function is triggered when the mouse button is pressed down over this paragraph. The function sets the color of the text to red.
The mouseUp() function is triggered when the mouse button is released. That function sets the color of the text to green.</p>
</body>
</html>