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 have this line of code for page load:

if ($("input").is(':checked')) {

and it works fine when the radio button input is checked. However, I want the opposite. Something along the lines of

if ($("input").not(.is(':checked'))) {

so that my if statement runs when none of the radiobuttons are selected. What is the best way to go about this?

share|improve this question

6 Answers

up vote 42 down vote accepted
if ( ! $("input").is(':checked') )

Doesn't work?

You might also try iterating over the elements like so:

var iz_checked = true;
$('input').each(function(){
   iz_checked = iz_checked && $(this).is(':checked');
});
if ( ! iz_checked )
share|improve this answer
1  
You might also filter that list by the name attribute this group of radio buttons share. – Nathan Long Oct 28 '09 at 14:34
2  
if ( !($("input").is(':checked')) ) I'll add extra parenthesis too to make it better. – roXon Sep 27 '11 at 20:05
if ($("input").is(":not(:checked)"))

AFAIK, this should work, tested against the latest stable jQuery (1.2.6).

share|improve this answer

If my firebug profiler work fine (and i know how to use it well), this:

$('#communitymode').attr('checked')

is faster than

$('#communitymode').is('checked')

You can try on this page :)

And then you can use it like

if($('#communitymode').attr('checked')===true) { 
// do something
}
share|improve this answer
$("input").is(":not(':checked')"))

This is jquery 1.3, mind the ' and " signs!

share|improve this answer
This one actually works. – MGOwen Oct 22 '12 at 4:50
$('input:radio[checked=false]');

this will also work

input:radio:not(:checked)

or

:radio:not(:checked)
share|improve this answer
1  
This will work for sure. Took me a while to figure out. It's the most elegant you can get without writing any code. – Antwan May 14 '10 at 19:45
Works great for me as selector as well. – Petro Semeniuk May 17 '12 at 2:56
top didnt work for me, but second did as a selector. Thanks – TroodoN-Mike Oct 2 '12 at 6:18

Check this

if($("#selector").is(":checked")) {

  alert('Checked');  

}
else {
  alert('Not checked');
}

You can give id or class like at the place of selector

share|improve this answer

protected by Jeff Atwood Jun 7 '10 at 21:50

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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