Skip to content

Instantly share code, notes, and snippets.

@dimasjt
Last active April 29, 2019 12:15
Show Gist options
  • Save dimasjt/bb72f177dfe142bc2757ee83d060abf6 to your computer and use it in GitHub Desktop.
Save dimasjt/bb72f177dfe142bc2757ee83d060abf6 to your computer and use it in GitHub Desktop.
trigger event react
const e = new KeyboardEvent("keydown", {
bubbles : true,
cancelable : true,
shiftKey : true,
keyCode : 13
});
const input = document.querySelectorAll('input')[0]
input.dispatchEvent(e)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment