link label to check box control

Jak
Jak
Member
858 Points
132 Posts

link label to check box control

Views: 8872
Total Answered: 1
Total Marked As Answer: 1
Posted On: 15-Jan-2015 22:02

Share:   fb twitter linkedin
Answers
Rahul Maurya
Rahul M...
Teacher
4822 Points
23 Posts
         

Method 1: Wrap Label Tag

Wrap the checkbox within a label tag:

<label><input type="checkbox" name="checkbox" value="value">Text</label>

Method 2: Use the for Attribute

Use the for attribute (match the checkbox id):

<input type="checkbox" name="checkbox" id="checkbox_id" value="value">
<label for="checkbox_id">Text</label>
 
Posted On: 21-Jan-2015 20:49
 Log In to Chat