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.

My task is really simple: given the set of 4 radio buttons, I need to programmatically check/select one of it on a click on an image. As simple as that.

Now I have these radio buttons:

<input type="radio" name="answer" value="A">
<input type="radio" name="answer" value="B">
<input type="radio" name="answer" value="C">
<input type="radio" name="answer" value="D">

The following jQuery code works just like a charm - when called from the click() function of an image:

$('input[name="answer"]').filter("[value='A']").attr("checked", true);

That is, the first of radio buttons is selected, everyone is happy. But as soon as I put the same line of code in the click() function of another image on the same page - it suddenly stops working! When I click that other image, I can see - for a split second! - that the right radio button is selected and then immediately cleared! Obviously, there's no code there operating on those radio buttons apart from this single line in image's click() function.

Please, save my sanity - could anyone please explain to me, how on Earth is that possible??? And, more importantly, how to fix that?

share|improve this question
It would be helpful to see the code whereby you bind that code as the "click" handler for your images. – Pointy Feb 15 '11 at 15:29

1 Answer

Maybe this post can help you: how to set radiobutton in jquery

Your code works on jsfiddle : http://jsfiddle.net/DfLVs/

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.