Last active
April 29, 2019 12:15
-
-
Save dimasjt/bb72f177dfe142bc2757ee83d060abf6 to your computer and use it in GitHub Desktop.
trigger event react
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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