Possible to associate label with checkbox without using “for=id”?

Yes, place the input inside the label.

<label><input type=checkbox name=chkbx1> Label here</label>

See implicit label association in the HTML specifications.

Leave a Comment