HTML Tutorial - HTML Form output








The output element represents the result of a calculation.

It has local attributes:name, form, for.

The following code shows the output element in use.

<!DOCTYPE HTML>
<html>
<body>
  <form onsubmit="return false"
    oninput="res.value = quant.valueAsNumber *  price.valueAsNumber">
    <fieldset>
      <legend>Price Calculator</legend>
      <input type="number" placeholder="Quantity" id="quant" name="quant" />
      x <input type="number" placeholder="Price" id="price" name="price" />
      =<!--  w w  w.  ja  v a2  s . c  om-->
      <output for="quant name" name="res" />
    </fieldset>
  </form>
</body>
</html>

Click to view the demo