RE: submitting with link

2002-04-14 Thread Jones, Richard
Hello, I have a similar issue. I have a logon form that is using links rather than buttons. My form declaration is html:form action=/logon.do. Currently, I have two html:link elements used to submit and reset the form. The href attributes are #. I also invoke a javascript logonValidate

submitting with link

2002-02-20 Thread Syed Niaz
Hi Iam unable to submit a form using a link function fna() { alert(document.forms[0].name); document.forms[0].submit ; } html:link href=javascript:fna()click/html:link No error is generated , but the screen simply does not move to the

RE: submitting with link

2002-02-20 Thread Brian Richards
You need to make the submit a method call. document.forms[0].submit(); bsr -Original Message- From: Syed Niaz [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 20, 2002 8:51 AM To: Struts Users Mailing List Subject: submitting with link Hi Iam unable to submit a form using