vote up 0 vote down star

I have the following radio buttons, none of which is checked by default.

<input type="radio" name="location" value="0" /> home
<input type="radio" name="location" value="1" /> work
<input type="radio" name="location" value="2" /> school

How do I detect when either of them is checked. I'm looking for something like click, but it's not working

$("input[name=location]").click(function(){
    alert("selected");
});
flag

3 Answers

vote up 1 vote down check

This works fine for me. Are you referencing well the jquery library?

link|flag
It looks like it was a bug with something above this line, and it messed up the whole javascript below it. – Chris Nov 7 at 18:15
vote up 2 vote down
$('input[name=location]').change(function(){
    alert(this.checked);
});
link|flag
vote up 1 vote down

Have you treid the onChange event?

$("input[name=location]").bind('change', function(){
    alert("selected");
});
link|flag

Your Answer

Get an OpenID
or

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