Checkboxes in HTML forms don\'t have implicit labels with them. Adding an explicit label (some text) next to it doesn\'t toggle the
Checkboxes
HTML
You need to just wrap the checkbox in label tag just like this
[Checkbox Label Here]
FIDDLE
or you can also use the for attribute of label and id of your checkbox like below
Other Details