Trying to get the value=\"\" of to change upon selection of a radio button. So if the user
to change upon selection of a radio button. So if the user
Give the radio input a class of "option" or call it what ever
Then the jquery:
$('.option').click(function(){ var thisRadio = $(this).val(); $('.box').val(thisRadio); });