2
Good afternoon, everyone.
I have a field with readonly value. This field already filled with data from my bank.
I have another field, where I will enter the percentage value.
How do I get the result value to be displayed in the other field?
<div class="row">
<div class="form-group col-md-4">
<label for="valor">Valor (R$)</label>
<input type="text" class="form-control" name="valor" id="valor" value="80.00" size="15" maxlength="25" placeholder="0.00" readonly>
</div>
<div class="form-group col-md-4">
<label for="percentual">Percentual (%)</label>
<input type="text" class="form-control" name="percentual" id="percentual" title="Informe o percentual" size="15" maxlength="25" placeholder="0.00%">
</div>
<div class="form-group col-md-4">
<label for="resultado">Resultado</label>
<input type="text" class="form-control" name="resultado" id="resultado" title="Informe o percentual" size="15" maxlength="25" placeholder="R$ 0.00">
</div>
</div>
Exactly how I need it. Thanks @Junior
– Marcia Pereira Reis
@Marciapereirareis if this answer helped you, mark it as solution on the left side of it, so that other people can be helped!
– JuniorNunes