Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to set radio option checked onload with jQuery?

Need to check if no default is set and then set a default

share|improve this question

8 Answers

up vote 158 down vote accepted

Say you had radio buttons like these, for example:

<input type='radio' name='gender' value='Male'>
<input type='radio' name='gender' value='Female'>

And you wanted to check the one with a value of "Male" onload if no radio is checked:

$(function() {
    var $radios = $('input:radio[name=gender]');
    if($radios.is(':checked') === false) {
        $radios.filter('[value=Male]').prop('checked', true);
    }
});
share|improve this answer
1  
You ROCK!!! Saved me a headache, thanks :) – Phill Pafford May 15 '09 at 22:34
Just wondering Paolo, IIRC the spec says that the checked attribute is meant to be checked="checked" (though I may be wrong). Does jQuery translate true to 'checked' in this example? Just curious... – alex May 15 '09 at 22:36
4  
My original example had 'checked','checked' , it's one of those things I can never remember which one is right. jQuery figures it out either way, but I know if you want to set the actual checked attribute of a DOM element it is supposed to be a boolean, like, document.getElementById('x').checked = true; - so I went with that. – Paolo Bergantino May 15 '09 at 22:37
Ah, thanks for getting back to me. Makes sense! – alex May 15 '09 at 22:40
Thanx a lot! Took me quite a while to find this. – tvgemert Sep 13 '09 at 10:09
show 3 more comments

How about a one liner?

$('input:radio[name="gender"]').filter('[value="Male"]').attr('checked', true);
share|improve this answer
what is Female is already checked? – vitule Dec 1 '10 at 16:10
6  
Simpy uncheck it with another one liner. – Euperia Mar 1 '11 at 11:27
this is good also – Floradu88 Mar 29 '11 at 7:12
The above is better as it supports more complex name values. – Jason Martin Jul 3 '11 at 17:44
18  
Good one liners always work great with females! ;-) – JP Hellemons Apr 19 '12 at 10:06

This one will cause form.reset() failure:

$('input:radio[name=gender][value=Male]').attr('checked', true);

But this one works:

$('input:radio[name=gender][value=Male]').click();
share|improve this answer

I liked the answer by @Amc. I found the expression could be condensed further to not use a filter() call (@chaiko apparently also noticed this). Also, prop() is the way to go vs attr() for jQuery v1.6+, see the jQuery documentation for prop() for the official best practices on the subject.

Consider the same input tags from @Paolo Bergantino's answer.

<input type='radio' name='gender' value='Male'>
<input type='radio' name='gender' value='Female'>

The updated one-liner might read something like:

$('input:radio[name="gender"][value="Male"]').prop('checked', true);
share|improve this answer

If you want it to be truly dynamic and select the radio that corresponds to the incoming data, this works. It's using the gender value of the data passed in or uses default.

if(data['gender'] == ''){
 $('input:radio[name="gender"][value="Male"]').prop('checked', true);
}else{
  $('input:radio[name="gender"][value="' + data['gender'] +'"]').prop('checked', true);
};
share|improve this answer

Don't need all that. With simple and old HTML you can achieve what you want. If you let the radio you want checked by default like this:
<input type='radio' name='gender' checked='true' value='Male'>
When page loads, it'll come checked.

share|improve this answer
2  
yes but I need it to be dynamic as the referring site would pass in the defaults on page load. It's been a while since I thought about this question so I hope I'm understanding what you're trying to say – Phill Pafford Nov 12 '10 at 15:05

$("form input:[name=gender]").filter('[value=Male]').attr('checked', true);

share|improve this answer
2  
Please don't post code-only answers. Please give an explanation too. – Lee Taylor Dec 16 '12 at 13:28

I think you can assume, that name is unique and all radio in group has the same name. Then you can use jQuery support like that:

$("[name=gender]").val(["Male"]);

Note: Passing array is important.

Conditioned version:

if (!$("[name=gender]:checked").length) {
    $("[name=gender]").val(["Male"]);
}
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.