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

Untitled

By: a guest on Jun 17th, 2012  |  syntax: None  |  size: 0.24 KB  |  hits: 14  |  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. Will Javascript variables stay if I reset the form they are set from before I use them?
  2. function gResults () {
  3.     var TestVar = myform.inputbox.value;
  4.     var url = TestVar;
  5.     document.myform.reset();
  6.         window.location=TestVar;
  7. }