Skip to content

Instantly share code, notes, and snippets.

@ckundo
Last active June 26, 2019 02:02
Show Gist options
  • Save ckundo/ea17ba9cb2317c801e3ba67b5a36f229 to your computer and use it in GitHub Desktop.
Save ckundo/ea17ba9cb2317c801e3ba67b5a36f229 to your computer and use it in GitHub Desktop.
js event dispatcher for keyboard triggers in XD
const ev = new KeyboardEvent("keydown", { key: "w" }); // replace "w" with the keyboard trigger value
document.querySelector("#root-1").dispatchEvent(ev);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment