Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<h1>The Element Object</h1>
<h2>The accessKey Property</h2>
<a id="w3s" accesskey="w" href="https://www.w3schools.com/">W3Schools</a>
<p>The accesskey of the link is:</p>
<p id="demo"></p>
<script>
let key = document.getElementById("w3s").accessKey;
document.getElementById("demo").innerHTML = key;
</script>
</body>
</html>