function gResults () {
var TestVar = myform.inputbox.value;
var url = TestVar;
document.myform.reset();
window.location=TestVar;
}
Assume a text box with a url in it.
Will that function always grab the form's input? Are the function's list of things always done in order and saved in memory? Or will the window.location
always go to null?