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:
- 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
- Store the value of the input field into a variable
- 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.