Certainly is:

<input type='text' id='myInput' />
<input type='radio' name='myRadio' value='first' />First
<input type='radio' name='myRadio' value='second' />Second

$(document).ready(function() {
   $("input:radio").click(function() {
      $("#myInput").val($(this).val());
   });
});


--rob

On 6/10/07, sublimenal <[EMAIL PROTECTED]> wrote:


Hello,

is it possible to update a <input type="text"> when you tick a <input
type="radio" name="1" value="10.00"> ?

Basicly I will have a bunch of radios and when you tick it, it shoud
update the input with the value of that radio that the user ticked.
Thanks in advance.




--
Rob Desbois
Eml: [EMAIL PROTECTED]
Tel: 01452 760631
Mob: 07946 705987
"There's a whale there's a whale there's a whale fish" he cried, and the
whale was in full view.
...Then ooh welcome. Ahhh. Ooh mug welcome.

Reply via email to