프론트엔드/Javascript
mouseup 이벤트가 동작하지 않을때 해결방법
syleemomo
2024. 9. 27. 17:29
728x90
https://stackoverflow.com/questions/9506041/events-mouseup-not-firing-after-mousemove
Events-- 'mouseup' not firing after mousemove
I am trying to drag an image with Javascript (no libraries). I am able to listen to mousedown and mousemove events. For some reason, I am not able to capture the mouseup event after mousemove. (I can
stackoverflow.com
Found the issue, if it is going to be of help to anyone:
I added event.preventDefault(); in the mousedown event and now I am getting mouseup notifications.
728x90