score:0

Accepted answer

of course you can do that:

d3.selectall('.someclass').property('checked', false);

test it here: jsfiddle

what is the problem, when you try to select the checkboxes by their class?

score:0

if you want to uncheck checkbox, then use:

d3.selectall('input').trigger('click')

Related Query

More Query from same tag