I have two input fields and a variable:
var x = 5;
First: <input type="text" name="first">
Second: <input type="text" name="second">
When I input a value in the first input field I want to update and display the second input field value with: first-input-field-value * x
When I input a value in the second input field I want to update and display the first input field value with: x / second-input-field-value