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 can set a radio button to checked fine, but what I want to do is setup a sort of 'listener' that activates when a certain radio button is checked.

Take, for example the following code:

$("#element").click(function()
{ 
    $('#radio_button').attr("checked", "checked");
});

it adds a checked attribute and all is well, but how would I go about adding an alert. For example, that pops up when the radio button is checked without the help of the click function?

Cheers, Keith

share|improve this question
possible duplicate of Check of specific radio button is checked – Felix Kling Jul 20 '12 at 14:31

4 Answers

up vote 124 down vote accepted
$('#element').click(function() {
   if($('#radio_button').is(':checked')) { alert("it's checked"); }
});
share|improve this answer
Bingo! thanks David. So would I have to invoke an action (click etc) to show the alert? Is there a way to do this without clicking? – Keith Donegan Feb 16 '10 at 11:50
1  
This doesn't solve the "without the help of the click function", does it? – Znarkus Feb 16 '10 at 11:58
3  
@Znarkus: OP appears satisfied. would you argue that you own use of ('#radio_button').click is without click? – David Hedlund Feb 16 '10 at 12:05
1  
@David Second line should be if ($('#radio_button').is(':checked'))) { alert("it's checked"); } - you forgot the jQuery $ sign and then need to wrap it all in some more parenthesis. – zuallauz Nov 2 '11 at 8:28
1  
@zua: you're right! it even had a syntax error, the way it was before (unmatched brackets). fixed – David Hedlund Nov 2 '11 at 11:53
show 3 more comments

If you have a group of radio buttons sharing the same name attribute and upon submit or some event you want to check if one of these radio buttons was checked, you can do this simply by the following code :

$(document).ready(function(){
  $('#submit_button').click(function() {
    if (!$("input[@name='name']:checked").val()) {
       alert('Nothing is checked!');
        return false;
    }
    else {
      alert('One of the radio buttons is checked!');
    }
  });
});

Source

share|improve this answer
This did not work for me. If I alert($("input[@name='shipping_method']:checked").val()); it still gives me the value even if the radio button is not selected. – AndrewC Jul 24 '12 at 8:08
4  
Ok got it working.. removed the @ sign. – AndrewC Jul 24 '12 at 8:12

You'd have to bind the click event of the checkbox, as the change event doesn't work in IE.

$('#radio_button').click(function(){
    // if ($(this).is(':checked')) alert('is checked'); 
    alert('check-checky-check was changed');
});

Now when you programmatically change the state, you have to trigger this event also:

$('#radio_button').attr("checked", "checked");
$('#radio_button').click();
share|improve this answer
4  
+1 for the IE warning – Pete Herbert Penito Jul 29 '11 at 2:12

If you don't want a click function use Jquery change function

$('#radio_button :checked').live('change',function(){
alert('Something is checked.');
});

This should be the answer that you are looking for. if you are using Jquery version above 1.9.1 try to use on as live function had been deprecated.

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.