I want to have a link submit a form contents but i dont know how... i figure somthing like...
<a href=" " onClick="submitUpdate(); return false">click me</a>
but this doesn't work.. Any ideas?
Thx.
Printable View
I want to have a link submit a form contents but i dont know how... i figure somthing like...
<a href=" " onClick="submitUpdate(); return false">click me</a>
but this doesn't work.. Any ideas?
Thx.
You might try this:
<a HREF = "javascript:void frmName.submit();">click me</a>
Where frmName is the name of your form.