Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 29th, 2012  |  syntax: None  |  size: 0.29 KB  |  hits: 22  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. How to display result of 'oninput' calculation in a different textbox? (HTML)
  2. <form oninput="valueB.value=valueA.value+900">
  3.     <input type="number" name="valueA" value="" />
  4. </form>
  5.  
  6. <form oninput="valueA.value=valueB.value+300">
  7.     <input type="number" name="valueB" value="" />
  8. </form>