zixuan
0
Q:

keypress javascript

<input type="text" onkeypress="myFunction()">
8
document.addEventListener("keypress", function(event) {
	// do stuff
});
8
The keypress event has been deprecated, 
you should look to use beforeinput : https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/beforeinput_event
or keydown : https://developer.mozilla.org/en-US/docs/Web/API/Document/keydown_event
instead.

(And don't forget to like answers that help you !)
1

New to Communities?

Join the community