Can JS submit name/vale pairs through a document.testform.submit(); ? or does it have to be submitted through the html tags, for example
<INPUT TYPE='text' NAME='inputbox1' VALUE='This is such a great form!' SIZE=50><P>
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Typically you include an <input type=’hidden’> in the form, and set the value you want in the event handler before it gets submitted.