Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html><head>
    <meta http-equiv='X-UA-Compatible' content='IE=edge' />
    <meta http-equiv='Content-Type' content='text/html;charset=UTF-8'/>
    <title>ARIA Hidden sample</title>
    
    <script>
      var isHidden = false;
      function toggleHidden() {
        var targetButton = document.getElementById('targetButton');
        isHidden = !isHidden;
        if (isHidden) {
          targetButton.setAttribute('aria-hidden', true);
        } else {
          targetButton.removeAttribute('aria-hidden');
        }
        targetButton.innerHTML = "Target button is " + (isHidden ? "hidden" : "not hidden");
      }
    </script>
  
</head>
<body class='sapUiBody'>
    <div id='content'>
      <h1>Sample demonstrating aria-hidden with JAWS</h1>
      <button onclick="toggleHidden();">Toggle hidden state</button>
      <button aria-hidden=false id='targetButton' onkeypress="if (event.keyCode===13) { window.alert('Enter key pressed'); }" onclick="window.alert('Button clicked');">Target button initial state</button>
      
      
    </div>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
RalphMarshallpro
0viewers