ADA Compliance Web accessibility Issue
-
Look at the page https://uniquesweb.co.in/betatguten/test-form/
In the form an auto input text field is added at top like this
<div style="display: none;"><input type="text" name="_hf_h377" value=""></div>
What is the purpose of this field I don’t know, but Its not ADA compatible, there must be a label tag around with inform the field info text. Or otherwise their should be atleast id attribute with same name as _hf_h377 , so that we can create a hidden label in our form with for=”_hf_h377″ to make it accessible , see this for more info on making input field accessible https://developer.mozilla.org/en-US/docs/Web/HTML/Element/labelAnd one more option is to use input type=”hidden” instead of input type=”text” for this auto generated input field.
Thanks
Hozefa
- The topic ‘ADA Compliance Web accessibility Issue’ is closed to new replies.