onkeypress event
by fido3993
HTML
<input type="text" onkeypress="myFunction()">
JavaScript
function myFunction() {
alert("Hello World");
}
by fido3993
<input type="text" onkeypress="myFunction()">
function myFunction() {
alert("Hello World");
}