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 can use start with selector:
start with
$("input[name^='Top']")
or:
$("input[name^='Top']:checkbox")