Element: ariaPlaceholder property
Baseline 2023Newly available
Since October 2023, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.
The ariaPlaceholder
property of the Element
interface reflects the value of the aria-placeholder
attribute, which defines a short hint intended to aid the user with data entry when the control has no value.
Value
A string.
Examples
In this example the aria-placeholder
attribute on the element with an ID of txtBoxInput
has been set to a string. Using ariaPlaceholder
we update the string to another value.
html
Enter your five-digit zip code
js
let el = document.getElementById("txtBoxInput");
console.log(el.ariaPlaceholder); // "5-digit zip code"
el.ariaPlaceholder = "12345";
console.log(el.ariaPlaceholder); // "12345"
Specifications
Specification |
---|
Accessible Rich Internet Applications (WAI-ARIA) # dom-ariamixin-ariaplaceholder |