learningtech
learningtech

Reputation: 33747

Are ReactJS Websites WCAG Compliant?

If I were to create a website where all HTML content was generated by ReactJS components, will it be WCAG Level AA Compliant? Ie. will screen readers be able to navigate through content that's been rendered via javascript code?

If the answer is yes, what tools do you use to test for this kind of Level AA compliance?

Upvotes: 4

Views: 2062

Answers (1)

Adam
Adam

Reputation: 18875

Dynamically generated web sites can be WCAG compliant.

See Does compliance to WCAG 2.0 AA prevent the use of JavaScript?

The WAI provides a list of tools that can perform some checks. For javascript generated web pages, you can use one of the browser plugins in the following page:

Web Accessibility Evaluation Tools List (browser plugins)

Upvotes: 2

Related Questions