Helping ordinary people create extraordinary websites!
   

How do I submit a form by clicking on a link with JavaScript?

Wednesday, 16th September 2009
by cgiFX


How to submit a form using only a link rather than a submit button?





Magneto
Hi cgiFX,
This bit of JavaScript is as simple as it is useful. For any website developer there must have come that point when they wanted to submit a form using a link. Below is the code:

Be sure to name your form for example:

<form name="testForm" ...

Use the below code for your link to submit the form. Notice where the name of the form is used.

<a href="javascript:document.testForm.submit();">Submit Me!</a>

- Magneto.




Monday, 21st September 2009
Votes:
74
31

More JavaScript Help:
» Javascript cookies to redirect user if submit button is already hit.
» How to remove special characters from a string?
» Want to know aout session tracking using javascript in html
» How to get the current URL and split it with JavaScript?
» Dynamic fields in: document.getElementById('<%= lstFieldList_TrajectType(0)%>').value
» How to use one checkbox to control all checkboxes?
» How to create an automatic follow link on mouseover?
» How to add a floating sidebar like on the Mashable website?

SPREAD THE WORD!
Tell a Friend

GET OUR NEWS


Developer Resources