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

Untitled

By: a guest on Jul 1st, 2012  |  syntax: None  |  size: 0.31 KB  |  hits: 19  |  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. function submitForm(form)
  2. {
  3.     form.inches.value = form.cm.value * 2.5;
  4. }
  5. </script>
  6. <form id="myform" action="submit-form.php">
  7. cm: <input type='text' name='cm'></br>
  8. inches: <input type='text' name='inches'></br>
  9. <input type="button" name="submit" value="Submit" onClick="submitForm(this.form)">
  10. </form>