I'm having trouble checking hidden checkboxes in IE. This is the base html:
<input id="groups_ids_1" name="group_ids[]" type="checkbox" value="1" />
<label for="groups_ids_1">Display</label>
This works fine, but if I then hide the checkboxes using either
$('input[type=checkbox]').hide();
or
$('input[type=checkbox]').css('visibility', 'hidden');
Clicking the label no longer checks the checkbox in IE. Of course it works fine in Firefox, Chrome and Safari.