All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.l10n.web.rules.Web.S6819.html Maven / Gradle / Ivy

The newest version!

Why is this an issue?

ARIA (Accessible Rich Internet Applications) roles are used to make web content and web applications more accessible to people with disabilities. However, you should not use an ARIA role on a generic element (like span or div) if there is a semantic HTML tag with similar functionality, just use that tag instead.

For example, instead of using a div element with a button role (<div role="button">Click me</div>), you should just use a button element (<button>Click me</button>).

Semantic HTML tags are generally preferred over ARIA roles for accessibility due to their built-in functionality, universal support by browsers and assistive technologies, simplicity, and maintainability. They come with inherent behaviors and keyboard interactions, reducing the need for additional JavaScript. Semantic HTML also enhances SEO by helping search engines better understand the content and structure of web pages. While ARIA roles are useful, they should be considered a last resort when no suitable HTML element can provide the required behavior or semantics.

<div role="button" onClick="myFunction()">Click me</div> <!-- Noncompliant -->

Replace the ARIA role with an appropriate HTML tag.

<button onClick="myFunction()">Click me</button>

Resources

Documentation

Standards





© 2015 - 2025 Weber Informatics LLC | Privacy Policy