You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if(dropdownLabel.length) {
// MDN `aria-labelledby` description: Indicates the IDs of the elements that are the labels for the object.
self.dropdownContainer.attr("aria-labelledby", dropdownLabel[0].id);
}
I changed it to:
if(dropdownLabel.length && dropdownLabel[0].id) {
// MDN `aria-labelledby` description: Indicates the IDs of the elements that are the labels for the object.
self.dropdownContainer.attr("aria-labelledby", dropdownLabel[0].id);
}
Hello.
In
dropdownContainer
automatically put the attributearia-labelledby
.I saw documentation and didn't find how I can remove this attribute from
span
container.Is it possible?
The text was updated successfully, but these errors were encountered: