I need to create code which automatticaly calculates the circumference when the length and width are entered in two different boxes.
I managed to do so, but I want the answer to appear underneath the "calculate" button, but the answer will make the button and boxes disappear. Could someone tell me what I need to change?
Here is my code:
<!DOCTYPE html>
  <html>
    <body>
      <form>
         Width:<br>
           <input id="Width" type="text" name="Width">
         <br>Length<br>
           <input id="Length" type="text" name="Length">
         <br><br>
           <input type="button" value="Calculate circumference" onclick="doMath()">
     </form>
     <script>
       function doMath() {
          var Width1 = document.getElementById('Width').value;
          var Length1 = document.getElementById('Length').value;
          var Circ = parseInt(Width1) + parseInt(Width1) + parseInt(Length1) + parseInt(Length1);
          document.write(Circ);
       }
     </script>
   </body>
</html>
         
     
     
    