JavaScript - How to stop mouse movement
javascript
Solution
Javascript can read mouse position but not set it. The mouse cursor properties exist outside the HTML Document Object Model and thus are beyond the reach of Javascript. Mouse events however are captured and thus readable / event modification also permissible (mouse hover, mouse over, mouse out, mouse click, dblclick).
Problem
No jQuery possible. How to disable / stop mouse movement with JavaScript? What to do: If the mouse is being moved to, let's say, `position left < 300`, disable ouse movement to prevent further moving into this direction. Is that possible?