Saturday, November 15, 2025
HomeLanguagesJavascriptWeb API ButtonElement.accessKey Property

Web API ButtonElement.accessKey Property

The HTML ButtonElement.accessKey property is used to return a DOMString which is a single character representing the accessKey in the given button.

Syntax:

ButtonElement.accessKey

Return Value: This property returns a DOMString which is a single character representing the accessKey to the given button.

Example 1:

HTML




<h1 style="color:green">neveropen</h1>
  
<h2>HTMLButtonElement.accessKey property</h2>
  
<button accessKey='g' onclick="gfg()">
    Click
</button>
<p id="gfg"></p>
<script type="text/javascript">
    function gfg() {
        var a = document.getElementsByTagName("button");
        document.getElementById("gfg").innerHTML = 'accessKey is : '+a[0].accessKey;
    }
</script>


Output:

 

Example 2:

HTML




<h1 style="color:green">neveropen</h1>
  
<h2>HTMLButtonElement.accessKey property</h2>
  
<button accessKey='k' onclick="gfg()">
    Click
</button>
  
<script>
    function gfg() {
        var a = document.getElementsByTagName("button");
        document.write('accessKey is : ', a[0].accessKey);
    }
</script>


Output:

Web API ButtonElement.accessKey Property

Web API ButtonElement.accessKey Property

Supported Browsers:

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Safari
  • Opera
  • Edge

Reference: https://developer.mozilla.org/en-US/docs/Web/API/HTMLButtonElement

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
32399 POSTS0 COMMENTS
Milvus
95 POSTS0 COMMENTS
Nango Kala
6765 POSTS0 COMMENTS
Nicole Veronica
11917 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11984 POSTS0 COMMENTS
Shaida Kate Naidoo
6890 POSTS0 COMMENTS
Ted Musemwa
7143 POSTS0 COMMENTS
Thapelo Manthata
6838 POSTS0 COMMENTS
Umr Jansen
6840 POSTS0 COMMENTS