Forum Moderators: open
You can add a bit of JavaScript to the link that will submit a specific form. One way to do it would look like this:
<a href="javascript:document.forms[0].submit()">Submit the first form</a> Note that the [0] is for the first form on the page. Use [1] for the second form, [2] for the third form, and so on.
Yes but which submit button would be getting hit with that, the one just called submit?
And where is the value of submit getting set?
<input type="submit" value="Submit"> You need to learn the basics of the common HTML tags. You'll find a comprehensive reference that explains all the tags and their attributes here:
[w3schools.com...]
HTH
I have one form, with multiple submit buttons.
<input type=submit name=function value="Move Selected">
<input type=submit name=function value="Close Selected">
<input type=submit name=function value="Open selected">
<input type=submit name=function value="Float Selected">
Multiple submit buttons, per say how would I link to.... Close Selected getting hit?