Vidyalelo
JavaScript · Q84

Document Object Model And Event Handling

Programming · JavaScript · question 84

Q84

How to detect and respond to mouse drags?

A.
Registering a mouseover handler
B.
Releasing a mousedown handler
C.
Registering a mousedown handler
Answer
D.
None of the mentioned

Answer: Option C

Solution

Answer: Option C
Solution:
By registering a mousedown handler that registers a mousemove handler, you can detect and respond to mouse drags. Doing this properly involves being able to capture mouse events so that you continue to receive mousemove events even when the mouse has moved out of the element it started in.