Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to check the first radio button of each group. But there are some radio button that are disabled, so the script should ignore them and go to next non-disabled button.

I wrote something like this but it doesn't work:

$(document).ready(function(){
if ($("input['radio']).is(':disabled'))
    {  
        $(this).attr('checked', false );
    }
else
    {
        $(this).attr('checked', true );
    }
});

Thanks a lot

share|improve this question
input[type=radio] instead – Haim Evgi Oct 20 '10 at 12:24
1  
Or, @Haim, input:radio. – David Thomas Oct 20 '10 at 12:30

5 Answers

up vote 10 down vote accepted

If your buttons are grouped by their name attribute, try:

$("input:radio[name=groupName][disabled=false]:first").attr('checked', true);

If they are grouped by a parent container, then:

$("#parentId input:radio[disabled=false]:first").attr('checked', true);
share|improve this answer
$("input:radio[name=groupX]:not(:disabled):first")

This should give you the first non-disabled radio-button from a group...

share|improve this answer

The below does what you want:

$(document).ready(
  function(){
    $('input:radio:first-child').attr('checked',true);
  }
  );

Demo at: JS Bin.

share|improve this answer
Although, to be fair, both @Šime and @rahul provide for sensible sanity-checks. – David Thomas Oct 20 '10 at 12:31
first-child isn't right – sje397 Oct 20 '10 at 12:39
$('input:radio:first-child') selects the first radio button from any radio group in your page. – Michael D. Irizarry Apr 12 '12 at 19:23
 $("input:radio:not(:disabled)).attr("checked", true);

To check the first radio button only in a group you can

 $("parentelement input:radio:not(:disabled):first-child").attr("checked", true);
share|improve this answer
1  
I believe the OP meant "group" as in "all radio buttons that share the same name attribute" – Šime Vidas Oct 20 '10 at 12:32
first-child isn't right – sje397 Oct 20 '10 at 12:38
<input type="radio" name="r1"><br>
<input type="radio" name="r1"><br>
<hr>
<input type="radio" name="r2"><br>
<input type="radio" name="r2"><br>
<input type="radio" name="r2"><br>

<script>
$(function(){
    //removed duplicates form the following array
    $(jQuery.unique(
        //create an array with the names of the groups
        $('INPUT:radio')
            .map(function(i,e){
                return $(e).attr('name') }
            ).get()
    ))
    //interate the array (array with unique names of groups)
    .each(function(i,e){
        //make the first radio-button of each group checked
        $('INPUT:radio[name="'+e+'"]:visible:first')
            .attr('checked','checked');
    });
});
</script>

jsfiddle = http://jsfiddle.net/v4auT/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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