I need to calculate input values using jQuery. If the input Gvalue is 100 and selected percentage is 10% then in the final value it should display a total value of 110 which should be like this 100*10% + 100 = 110.
value
<input type="text" name="gvalue" class="input" required/>
Percentage
<select name="percent" id="percent" class="input" onchange="setStates();">
<option value="Country" selected>Select Percentage</option>
<option value="5">5</option>
<option value="10">10</option>
<option value="15">15</option>
</select>
Final Value
<input type="text" name="flvalue" class="input" id="#total" required/>