Thursday, September 4, 2025
HomeLanguagesJavascriptHTML DOM onkeypress Event

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:

  • <base>
  • <bdo>
  • <br>
  • <head>
  • <html>
  • <iframe>
  • <meta>
  • <param>
  • <script>
  • <style>
  • <title>

Syntax:

  • In HTML:
<element onkeypress="myScript">
  • In JavaScript:
object.onkeypress = function(){myScript};
  • In JavaScript, using the addEventListener() method:
object.addEventListener("keypress", myScript);

Example: onkeypress Event using the addEventListener() method 

HTML




<!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:

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Apple Safari
  • Opera
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32264 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6629 POSTS0 COMMENTS
Nicole Veronica
11799 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11859 POSTS0 COMMENTS
Shaida Kate Naidoo
6749 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6698 POSTS0 COMMENTS
Umr Jansen
6717 POSTS0 COMMENTS