HOW TO SUBMIT A FORM BY CLICKING A LINK
It's possible?
Yes is possible to submit a form by clicking a link with javascript script.
Here is the script:
<form name="Form">
<input type=text name="name_input">
<a href="javascript:document.Form.submit();">Submit</a>
</form>
Click submit link to see the example