up vote 0 down vote favorite
share [g+] share [fb]

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");
});
link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

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

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

Have you treid the onChange event?

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

Your Answer

 
or
required, but never shown

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