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.

So, I have 3 radio buttons:

<input type="radio" name="status" value="enabled" class="radio" <?php if($news_row['status']==1) echo 'checked'; ?> />
<input type="radio" name="status" value="disabled" class="radio" <?php if($news_row['status']==2) echo 'checked'; ?> />
<input type="radio" name="status" value="timer" class="radio" <?php if($news_row['status']==3) echo 'checked'; ?> />

And I'm trying to check if radio button with value timer is checked like so

if($('.radio [value=timer]').is(':checked')) {
    console.log('timer');
}

But obviously I'm doing something wrong since that code above doesn't work. So, which is the right way to do it? Using .change()?

share|improve this question

3 Answers

up vote 2 down vote accepted

Demo http://jsfiddle.net/m4m57/5/

Issue was the space here f ($('.radio [value=timer]').is(':checked')) {

                                    ^-----------

Hope this helps,

code

$('input').on('change', function() {
    if ($('.radio[value=timer]').is(':checked')) {
        alert('say what');
        console.log('timer');
    }
});​
share|improve this answer

Remove space:

if($('.radio[value=timer]').is(':checked')) {
    console.log('timer');
}

You had space in .radio [value=timer] which means a different selector eg it meant select all elements with value attribute set inside an element with class radio at any nested level

Removing the space means select all elements with class radio AND value attribute set

share|improve this answer

Live Demo

    if ($('.radio[value=timer]').is(':checked')) {
         console.log('timer');
    }
share|improve this answer
That would look for any radio buttons with timer value whereas OP is looking for those with class .radio. I also mis-understood initially but then spotted that actual problem. Are you from Pakistan also ? – Blaster Jun 27 '12 at 11:12
Corrected my answer – Adil Jun 27 '12 at 11:16
if ($('.radio[value=timer]').is(':checked')) should be if ($(this).is(':checked')) since you are inside an event. Currently your code checks for all including the clicked one. – Blaster Jun 27 '12 at 11:17
@Blaster: The event handler is bound to all radio buttons. But you could to if($(this).is('[value=timer]:checked')). – Felix Kling Jun 27 '12 at 11:18
@FelixKling: Yep that's what I mean :) – Blaster Jun 27 '12 at 11:19
show 1 more comment

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.