In jQuery, I\'d like to select all groups of radio buttons where there are no buttons checked.
Or, is there a way in which I can select all radio button groups and i
Support for multiple groups and pre-checked.
$('input').click(function() {
var $t = $(event.target);
if ($t.hasClass('checked')) $t.removeAttr('checked');
else $('input[type="radio"][name="' + $t.prop('name') + '"]').not($t).removeClass('checked');
$t.toggleClass('checked');
}).filter(':checked').addClass('checked');
```
Proof: http://jsfiddle.net/abrkn/PGW2Z/