Difference between revisions of "Anchor with no href"

From Level Access Web Labs
Jump to navigation Jump to search
(Created page with "Anchor with no href but with onclick and tabindex but no role. <html> <a onclick="alert('jon');" tabindex="0"> Our site </a> </html>")
 
 
(5 intermediate revisions by the same user not shown)
Line 2: Line 2:
  
 
<html>
 
<html>
   <a onclick="alert('jon');" tabindex="0"> Our site </a>
+
<head>
 +
<script>
 +
  function check() {
 +
    if (event.keyCode == 32 || event.keyCode == 13) {
 +
      window.location = "http://www.google.com";
 +
      event.preventDefault()
 +
    }
 +
  }
 +
</script>
 +
</head>
 +
<body>
 +
   <a onclick="window.location = 'http://www.google.com';" tabindex="0" onKeyup="check();"> Our site </a>
 +
  <a onclick="window.location = 'http://www.google.com';"  onKeyup="check();"> Our site </a>
 +
 
 +
</body>
 
</html>
 
</html>

Latest revision as of 13:54, 26 November 2018

Anchor with no href but with onclick and tabindex but no role.

Our site Our site