-
Hi,
I checked a page form with this tool:
https://chromewebstore.google.com/detail/ibm-equal-access-accessib/lkcagbfjnkomcinoddgooolagloogehpAnd get this result.
Can you implement ID in our plug-in?Test result:
Why is this important?
A <label> element is attached to a specific element, such as <input> and <select>, through the for attribute. When a <label> does not reference the corresponding unique id in a valid element, assistive technologies cannot associate the label with the element.Element location
<label
for=”dhvc_form_control_ja_6777147f9e193″
class=””>What to do
Set the value of the for attribute to the id value of the valid element to be labeled. Make sure the id value is unique.
For example:<label id=”label2″ for=”ln1″>Last Name</label>
<input type=”text” name=”lastname” id=”ln1″ value=”enter last name”>Rule ID: label_ref_valid
Reason ID: fail_invalid
Accessibility WCAG 2.2
This topic is: not resolved