Skip to content

Instantly share code, notes, and snippets.

@Giagnus64
Last active September 17, 2019 16:48
Show Gist options
  • Select an option

  • Save Giagnus64/3c08e71c8afd329d9adc491ced0e14d8 to your computer and use it in GitHub Desktop.

Select an option

Save Giagnus64/3c08e71c8afd329d9adc491ced0e14d8 to your computer and use it in GitHub Desktop.
Keyboard Event Listener
// This event has different options
const kbEvent = new KeyboardEvent('keypress', {
key:"e"
shiftKey:"true"
});
//see how the event is called on document
document.dispatchEvent(kbEvent);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment