Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<p>Assign an "onkeypress" event to an input element.</p>
<p>Press a key inside the text field to set a red background color.</p>
<input type="text" id="demo" onkeypress="myFunction()">
<script>
function myFunction() {
  document.getElementById("demo").style.backgroundColor = "red";
}
</script>
</body>
</html>