I\'m trying to find a selector in jQuery that select all inputs that are checkboxes and their name contains a specific word like \"top\" or \"Top\". Having trouble b/c its
You were close...
$("input[type='checkbox'][name^='Top']").each()
jsFiddle Demo