I am trying to set up a web that new times will be displayed when they add current times to a form.
here is the static HTML
I would like to have the new times to change dynamically as they type in either (or both) input boxes
here is the static HTML
<form method="POST" >
current time is 11:32 AM</p>
<p>add <input type="text" name="T1" size="5" value="20"> mins and the new time time would be <b> 11:52 AM</b></p>
<p>add another<input type="text" name="T2" size="5" value="15"> mins and the time then changes to <b>12:07 PM</b></p>
<p><input type="submit" value="Submit" name="B1"></p>
<p><input type="reset" value="Reset" name="B2"></p>
</form>
I would like to have the new times to change dynamically as they type in either (or both) input boxes
Comment