I'm trying to pass some info to an ASP webpage. The form on the page looks as following:
<form name=onlineform method=post onSubmit="javascript:return false;">
<input type=hidden name="form" value="">
<textarea name=item rows=5 cols=33 onBlur="this.value=removeSpaces(this.value);" tabindex="1"></textarea>
<input type="text" name="Email" size="26" tabindex="2">
<input type="image" src="resetButton.gif" width="60" height="30" border="0" onClick="javascript:onlineform.reset();" align="bottom" tabindex="3">
<input type="image"src="SubmitButton.gif" name="Submit" width="60" height="30" border="0" onClick=javascript:check_input() align="bottom" tabindex="4">
</form>
The email section is optional so I would only like to fill the text area and submit the form, capturing the return to be displayed later.
Problem 1 I have is the text area, problem 2 is the submit (onClick=javascript:.....).
Can anyone help?
Thanks !!!