Open In App

HTML DOM onkeypress Event

The DOM onkeypress event in HTML occurs when a key is pressed by the user. Order of events related to the onkeypress event:

Supported HTML tags: All HTML elements, EXCEPT:



Syntax:

<element onkeypress="myScript">
object.onkeypress = function(){myScript};
object.addEventListener("keypress", myScript);

Example: onkeypress Event using the addEventListener() method 






<!DOCTYPE html>
<html>
 
<head>
    <title>
        DOM onkeypress event
    </title>
</head>
 
<body>
    <h1 style="color:green">
        GeekforGeeks
    </h1>
    <p>
        Press any key inside
        the input field.
      </p>
    <input type="text" id="inputField"
           style="background-color:green">
 
    <script>
        document.getElementById(
            "inputField").addEventListener("keypress", GFGFun);
        function GFGFun() {
            document.getElementById(
                "inputField").style.backgroundColor =
                "yellow";
        }
    </script>
</body>
 
</html>

Output: 

 

Supported Browsers: The browsers supported by HTML DOM onkeypress Event are listed below:


Article Tags :