2
I would like as the user was clicking on the options of checkbox
, its value was added in an input text:
<div class="form-group col-md-7">
<label class="checkbox-inline"><input type="checkbox" value="Laranja">Laranja</label>
<label class="checkbox-inline"><input type="checkbox" value="Uva">Uva</label>
<label class="checkbox-inline"><input type="checkbox" value="Banana">Banana</label>
</div>
When clicking on the 3, the input text was filled with the options.
It is possible?