Stay organized with collections
Save and categorize content based on your preferences.
blockly > utils > aria > setState
utils.aria.setState() function
Sets the state or property of an element. Copied from Closure's goog.a11y.aria
Signature:
export declare function setState(element: Element, stateName: State, value: string | boolean | number | string[]): void;
Parameters
Parameter |
Type |
Description |
element |
Element |
DOM node where we set state. |
stateName |
State |
State attribute being set. Automatically adds prefix 'aria-' to the state name if the attribute is not an extra attribute. |
value |
string | boolean | number | string[] |
Value for the state attribute. |
Returns:
void
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-09-18 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-09-18 UTC."],[[["The `utils.aria.setState()` function is used to set the state or property of a DOM element."],["It automatically adds the prefix 'aria-' to the state name if the attribute is not an extra attribute."],["The function accepts the element, state name, and value as parameters."],["This function is derived from Closure's `goog.a11y.aria`."]]],[]]