docs.rodeo

MDN Web Docs mirror

Element: ariaCurrent property

{{APIRef("DOM")}} 

The ariaCurrent property of the {{domxref("Element")}}  interface reflects the value of the aria-current attribute, which indicates the element that represents the current item within a container or set of related elements.

Value

A string with one of the following values:

Examples

In this example a set of links are used for site navigation. The aria-current attribute indicates the current page. The value page is incorporated into the screen reader announcement. Using ariaCurrent we can update that value.

<nav>
  <ul>
    <li><a id="link-home" href="/" aria-current="page">Home</a></li>
    <li><a href="/">About</a></li>
    <li><a href="/">Contact</a></li>
  </ul>
</nav>
let el = document.getElementById("link-home");
console.log(el.ariaCurrent); // "page"
el.ariaCurrent = "tab";
console.log(el.ariaCurrent); // "tab"

Specifications

{{Specifications}} 

Browser compatibility

{{Compat}} 

See also

In this article

View on MDN