Web programming question (help)

does anyone know how to use a link for form submission (as opposed to a button)? I think it’s javascript related, and I remembered seeing code for it a while ago, but can’t find it again. Any help would be much appreciated.

Well, the short answer is that you use an onClick handler in the link to call the submit() method of the Form object. Something like…
…onClick=“formname.submit(); return;”…

Is this enough or do you need a full example?

that worked perfectly, thanks.

I was trying to modify the dropdown list redirection so it would submit instead of redirect to a URL.