Instead of a submit button I have a link:
<form>
<a href="#"> submit </a>
</form>
Can I make it submit the form when it is clicked?
|
Instead of a submit button I have a link:
Can I make it submit the form when it is clicked? |
|||
|
|
|
Add an onclick event to the link and an id to the form:
|
|||
|
|
|
You could give the form and the link some ids and then subscribe for the
and then:
I would recommend you using a submit button for submitting forms as it respects the markup semantics and it will work even for users with javascript disabled. |
|||
|
|
|
If you use jQuery and would need an inline solution, this would work very well;
Also, you might want to replace
with
so the user does not scroll to the top of your page when clicking the link. |
|||
|
|