How can I use jquery to select the checkbox that has an array value in its attribute name?
html,
<input type="checkbox" name="delete[]" value="1"/>
My attempt that does not work,
$('input:checkbox[name=delete]',container).not('input:checkbox[disabled=disabled]').prop('checked', true);
Any ideas?