Clicking the label of my checkboxes for the form below does not make the checkbox selected when using an iPad. I thought this should happen as the input is within the label. Thanks
<fieldset>
<label class="form-cont-my-sep first-my"><input type="checkbox" name="checkbox-1" />Any</label>
<label class="form-cont-my-sep"><input type="checkbox" />1</label>
<label class="form-cont-my-sep"><input type="checkbox" />2</label>
<label class="form-cont-my-sep"><input type="checkbox" />3</label>
<label class="form-cont-my-sep"><input type="checkbox" />4</label>
<label class="form-cont-my-sep"><input type="checkbox" />5</label>
<label class="form-cont-my-sep"><input type="checkbox" />6</label>
</fieldset>
Turns out it’s an iOS 4 bug. Adding an empty
onclickon thefieldsetfixes this.