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 try to check a radio button with jQuery. Here's my code :

<form>
    <div id='type'>
        <input type='radio' id='radio_1' name='type' value='1' />
        <input type='radio' id='radio_2' name='type' value='2' />
        <input type='radio' id='radio_3' name='type' value='3' /> 
    </div>
</form>

And the javascript :

jQuery("#radio_1").attr('checked', true);

Doesn't work

jQuery("input[value='1']").attr('checked', true);

Doesn't work

jQuery('input:radio[name="type"]').filter('[value="1"]').attr('checked', true);

Doesn't work

Do you have another idea? What am I missing?

share|improve this question
1  
Thanks for your responses! I found the problem. Actually, the two first ways to do it are working. The point is I used jqueryUI to transform a set of 3 radio buttons into a button set with this code : jQuery("#type").buttonset(); but making this change before checking the radio was breaking the radio set (don't know why). Finally, I put the buttonset call after checking the radio and it works impeccably. – jafar Apr 14 '11 at 18:43

9 Answers

up vote 103 down vote accepted
jQuery("#radio_1").attr('checked', 'checked');

Change it from "true" to "checked."

For jQuery 1.9 or higher use

$("#radio_1").prop("checked", true)
share|improve this answer
+1: I can't begin to describe how many times I've made this error. – Mala Apr 14 '11 at 15:51
2  
it works with 'true' too – jafar Apr 14 '11 at 18:41
this answer deserves to have at least +100 upvotes – ajax333221 Dec 28 '11 at 1:01
12  
In jQuery 1.9 or higher this solution won't work. Use $("#radio_1").prop("checked", true); instead. – Installero Mar 15 at 18:48
1  
Thanks Installero, Mike should update his answer as that is no longer correct for the latest jQuery. – dmikester1 Mar 19 at 18:36
show 4 more comments

One more function prop() that is added in jQuery 1.6, that serves the same purpose.

$("#radio_1").prop("checked", true); 
share|improve this answer
This one worked for me – James Long Jan 25 at 12:04
7  
the attr('checked', true) stopped working for me with jQuery 1.9, this is the solution! – Pascal Feb 26 at 15:40
@Pascal, thanks to let me know :) – Umesh Mar 5 at 5:03

try this.

in this example, I'm targeting it with its input name and value

$('input[name=background][value=color]').prop("checked",true);
share|improve this answer
This is probably the best way, the others have a tendency to stick there making the function useless the second time while this works just as expected – Roy Toledo Feb 14 at 14:15

You can check a radio button directly:

    $('input[name=field]:eq(1)').attr('checked', 'checked');

or trigger its click event:

 $('input[name=field]:eq(1)').click();
share|improve this answer

Short and easy to read option:

$("#radio_1").is(":checked")

It returns true or false, so you can use it in "if" statement.

share|improve this answer

You have to do

jQuery("#radio_1").attr('checked', 'checked');

That's the HTML attribute

share|improve this answer
$("#radio_1").attr('checked', true);
//or
$("#radio_1").attr('checked', 'checked');
share|improve this answer
2  
$("#radio_1").attr('checked', true); this won't work. As mentioned by the OP – JohnP Apr 14 '11 at 15:53

Try this.

$('input[name=type][value=2]').attr('checked', true); 

Or

$('input[name=type][value=2]').attr('checked', 'checked');
share|improve this answer

Try this

var isChecked = $("#radio_1")[0].checked;
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.