Hi I want to get all my checked checkboxes from a form and i do like this(and it works)
var cbs = dojo.query('input:checked', 'f');
I wand to add another selector(class selector) to get all checked checkboxes from a form with a specified class. I tried this one but it doesn't work
var cbs = dojo.query('input:checked .xClass', 'f');