-1

When does the mouseUp and mouse press launch and what is the difference between them? Does using mouseDown and mouseUp mean holding?

Ali Saki
  • 3
  • 6
  • Possible duplicate of [What's the difference between 'mouseup' and 'click' events?](https://stackoverflow.com/questions/14805225/whats-the-difference-between-mouseup-and-click-events) – random_user_name Aug 24 '18 at 23:08

1 Answers1

0

mouseDown detects when the mouse is pressed down. mousePress detects when the mouse is pressed down then released. mouseUp detects when the mouse is up.