List out various DHTML mouse events?
In : BCA Subject : Web DesigningDHTML provides several mouse events to make pages interactive.
The onclick event triggers when an element is clicked once,
while ondblclick is for a double-click.
The onmousedown event occurs when the mouse button is pressed down on an element, and onmouseup fires when it is released.
To track movement, onmousemove is used whenever the pointer moves over an element. The onmouseover event activates when the mouse enters an element's area, and onmouseout when it leaves.