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.

Hoping for a helping hand here.

I have a radio button element like this:

      <input type="radio" class="myradio" name="amount" value="0" />0.0 some text
      <input type="radio" class="myradio" name="amount" value="1" />1.0 some text
      <input type="radio" class="myradio" name="amount" value="2" />2.0 some text
      <input type="radio" class="myradio" name="amount" value="3" />3.0 some text 

I need a Jquery function to allow for the following:

  1. When users check a radio button, transform the HTML number in the text next to the checked radio button (i.e. numbers 0.0,1.0,2.0,3.0 above) into a text input field with the corresponding number inside and focus the cursor inside that element
  2. Store the value of the input field into a variable
  3. On user manually changing the value of the input (say from 1.0 to 1.5), update the value of the text field variable so I can then submit it via GET to a PHP file (I have that function already, just need the variable).

I should also point that the radio button element above is dynamically generated from a database.

Any help greatly appreciated, JQuery novice here :-)

UPDATE:

I thought I could use a click function like this:

         $('.myradio').click(function(){ 
         //get the numeric value for amount
         var amount = fullstr.slice(0,3);
         // (where "fullstr" is the text string next to radio button
         //do the magic here
         }); 

but my problem is I don't seem to be able to capture the input element's value by referencing the class of the corresponding radio button.

share|improve this question
1  
If you are dynamically creating the radio buttons, why aren't you also dynamically creating the input text boxes? – Steve Wellens Jan 30 '12 at 23:29
What have you tried so far? Can you post that code so we can help you from there? – Vega Jan 30 '12 at 23:37
Steve, I can do that, but I think having the number become an input text when users select the corresponding radio button would convey the idea that they can edit that information in a more obvious fashion. – Cucurigu Jan 30 '12 at 23:42
SKS, please see update note above. – Cucurigu Jan 30 '12 at 23:46
Is '0 some text' in your example text on the page next to the radio? If yes, is the number '0' what you want to be replaced with a input box with '0' in it? – Brent Anderson Jan 31 '12 at 0:18
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.