Hi, I have a question about the aria-valuenow
attribute. I’m including a an input of type=“number”
in my site, which is written in React. The MDN docs on the aria-valuenow
element indicate that it is a required attribute for this input type, which to me implies that if I want to fill it in properly I need to be tracking the value of the form element in JS and fill in that attribute properly… is that intended? What’s the default behavior if I didn’t fill that in at all, given the value of this number element isn’t something I’m manipulating programmatically, nor is it a value that needs any special text representation beyond the number itself?