I have for example 4 input
, each input
has a specific value ex:
*input com os valores
<input type="radio" value="1">
<input type="radio" value="2">
<input type="radio" value="3">
<input type="radio" value="4">
*input onde os valores serão adicionados
<input name="input vazio" type="text" value="">
And I still have another input
, and this input
will initially be empty, and depending on whether you select input
, the values for the selected input
will be added to that other input
empty, ex:
<input type="radio" value="1"> *esse input foi selecionado, logo o input vazio ficará assim
<input name="input vazio" type="text" value="1">
Suppose I select more than one button, I want you to add the values of both selected buttons, eg
<input type="radio" value="1"> *esse input foi selecionado
<input type="radio" value="2"> *esse input foi também foi selecionado
<input type="radio" value="3"> *esse terceiro também foi selecionado
*logo o input que inicialmente estava vazio ficará assim :
<input name="input vazio" type="text" value="1 2 3">