I have this jQuery which gives me a set of INPUT items.
var list = $("input[name*='popSearch']")
How would I modify it to only return those where the INPUT element is checked ?
first docs.jquery.com is a fanstastic resource,
however to your request this should work,
var list = $("input[name*='popSearch'] :checked")
:checked element inside the input. But it's the input itself that can be checked. Dan has it right, without the space.