I've searched a lot for a JavaScript event which shows a situation
that a click has been started but not finished yet. For example for
ondrag
event there's an ondragstart
. I didn't find anything useful.
So here's the question:
Is there a onclickstart
event in JavaScript?
If the answer is "No", how could it be implemented?
I appreciate your comments.
I think you are looking for onmousedown
. Check out this link: