JavaScript DHTML/Event onMethod/onMouseDown
Версия от 10:02, 26 мая 2010; (обсуждение)
"onMouseDown" Example
<html>
<head>
</head>
<body>
<input type="button"
value="Click here"
onmousedown="alert("You just pressed down on a mouse button")">
click the mouse button to triger the onmousedown event
</body>
</html>