F=document.getElementById("c").value * 9 / 5 + 32;
document.getElementById("f").value=Math.round(F);
C=(document.getElementById("f").value -32) * 5 / 9;
document.getElementById("c").value=Math.round(C);
<p></p><b>Insert a number into one of the input fields below:</b></p>
<input id="c" name="c" onkeyup="convert('C')"> degrees Celsius<br>
<input id="f" name="f" onkeyup="convert('F')"> degrees Fahrenheit
<p>Note that the <b>Math.round()</b> method is used, so that the result will be returned as an integer.</p>