I have these two input fields.
<input type="text" name="ltc">
<input type="text" name="btc" readonly>
Ok, now I want ... that when I enter some value in the first text box , then that value will be multiplied by a constant number and the result will be displayed in btc .
I think this can be done using jQuery, but I don't know how to do it (due to my limited / no knowledge in jQuery). Can anybody help me?
Thanks.
source
share