vote up 0 vote down star

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 iterate through the groups?

I'm dynamically adding N radio button groups to a page and will not know, before hand, what the names of the radio button groups will be.

flag
can you put a sample html? – Elzo Valugi Jul 22 at 15:02

1 Answer

vote up 1 vote down check

To find all radio groups:

var radio_groups = {}
$(":radio").each(function(){
    radio_groups[this.name] = true;
})

to find which radio group has checked radio boxes and which hasn't:

for(group in radio_groups){
    if_checked = !!$(":radio[name="+group+"]:checked").length
    alert(group+(if_checked?' has checked radios':' does not have checked radios'))
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.