Skip to content

willCode2Surf/a11y-checker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

a11y checker

Warn about HTML Markup code accessibility issue. a11y

Usage

First, Download the a11y.js

Second, include it before </body>

<script src="a11y.js"></script>

Third, open the console.

if you need to test your website or any website without download the file you can put this code in the console.

var script = document.createElement("script");
script.type = "text/javascript";
script.src = "https://cdn.rawgit.com/Muhnad/a11y-checker/master/a11y.js";
document.body.appendChild(script);

Thanks to @Paul Adam for upload the script in rawgit.

License

MIT

About

Identifies accessibility issues in HTML markup.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 90.4%
  • HTML 9.6%