Skip to content

Instantly share code, notes, and snippets.

@weisk
Forked from callmephilip/gist:3517765
Created August 26, 2016 07:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save weisk/4baead030f7dd4e690d56a3b884803c6 to your computer and use it in GitHub Desktop.
Save weisk/4baead030f7dd4e690d56a3b884803c6 to your computer and use it in GitHub Desktop.
[JavaScript] Dispatching mouse move event
// look here for more details : https://developer.mozilla.org/en-US/docs/DOM/event.initMouseEvent
var mouseMoveEvent = document.createEvent("MouseEvents");
mouseMoveEvent.initMouseEvent(
"mousemove", //event type : click, mousedown, mouseup, mouseover, mousemove, mouseout.
true, //canBubble
false, //cancelable
window, //event's AbstractView : should be window
1, // detail : Event's mouse click count
50, // screenX
50, // screenY
50, // clientX
50, // clientY
false, // ctrlKey
false, // altKey
false, // shiftKey
false, // metaKey
0, // button : 0 = click, 1 = middle button, 2 = right button
null // relatedTarget : Only used with some event types (e.g. mouseover and mouseout). In other cases, pass null.
);
document.dispatchEvent(mouseMoveEvent)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment