Ninja Forms W3C Error and Possible Solution
-
Critical: The aria-describedby attribute must point to IDs of elements in the same document. Critical: The aria-labelledby attribute must point to IDs of elements in the same document.
I’m getting these back from my accessibility scan, in reference to
ID: nf-form-errors-1
andID: nf-form-title-1
.I know this was brought up in a previous post, and was ruled out as a ‘false positive’, however, I believe there’s a solution for this issue:
Add
aria-busy=true
while the content is loading, andaria-busy=false
once loading completes.aria-busy
waits for the wrapped content to complete being “busy”, and only after it is done, will it go through the child elements to look for required relationships.aria-busy
works with thearia-live
attribute. It is explained more in this article:
https://accessibilityresources.org/aria-busyCould this fix be implemented? Thank you!
- The topic ‘Ninja Forms W3C Error and Possible Solution’ is closed to new replies.