use <html:submit property="foo" />

This will output :
<input type="submit" name="foo"> and your javascript will work.

Nico.


When using the <html:submit /> tag in conjuction with <a 
href="javascript:document.forms[0].submit();"> on the same
page, the second method of submitting a form does not work.  Remove the <html:submit/> 
and the latter method works fine.
The html outputted by the <html:submit/> is <input type="submit" name="submit">.  This 
causes a naming conflict in
JavaScript where it gets confused between the submit field and the submit() method.  
odd.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to