Forum Moderators: open
<label for='myCheck'>Just a checkbox</label>
<input id='myCheck' type='checkbox'>
<label id='lblCheck' for='myCheck'>Just a checkbox</label>
<input id='myCheck' type='checkbox' aria-labelledby='lblCheck'>
It should be noted that (X)HTML provides a <label for> element which you can use to label form controls. For all visual objects, including (X)HTML form elements, you should use the WAI-ARIA aria-labelledby property for labeling.
[...]so adding aria-labelledby would just be accessibility theatre.