I have an input using a onkeypress
trigger, and I'm trying to find a way to fire the event trigger with a specific keycode. I've looked around but all I find are jQuery solutions, and I don't want to use jQuery.
For a click
trigger you'd just use document.forms[0].elements[1].click()
but there doesn't seem to be a keypress()
equivalent for onkeypress
.