I want to get all checked checkboxes from a form and I like this (and it works)
var cbs = dojo.query('input:checked', 'f');
I want to add another selector (class selector) so that all checkboxes are checked in the form with the specified class. I tried this one but it does not work.
var cbs = dojo.query('input:checked .xClass', 'f');
source
share