I would like that as long as the user was clicking on the options of checkbox
, the value of it 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>
By clicking on the 3, the input text is filled in with the options.
Is it possible?