Please solve the above problem and give me one example of HTML Code for calculation of Two Numbers and then Their SUM.
Thanks,
Manoj Mishra
Thanks,
Manoj Mishra
<form> Width: <input name="width" /><br/> Length: <input name="length" /><br/> Area: <input name="area" readonly /><br/> <input type="button" value="Compute Area" onclick="this.form.area.value = this.form.width.value * this.form.length.value;" /> </form>
Comment