I'm looking for a solution for the following issue,
I need a Javascript code to calculate this with onekeyup. So for example, if I insert a value of 2 in text1. In text2 the value has to be 200.
<form>
<input type='text' name='text1'>
<input type='text' name='text2'>
<script>
var factor= 100;
var text1= value in text2 * factor;
var text2= value in text1 / factor;
</form>