[jQuery] Re: Form plugin: Multiple submit buttons

2007-05-16 Thread wyo
On May 15, 3:25 pm, Scott Sauyet <[EMAIL PROTECTED]> wrote: > > You could easily do this in JQuery, but then you have to realize that > the site would not work with Javascript disabled. Since you are going > to have to do server-side processing anyway, it doesn't seem that big a > deal to do the

[jQuery] Re: Form plugin: Multiple submit buttons

2007-05-15 Thread Mike Alsup
The best way to handle this is to give the submit buttons a name and value and key off that data on the server tier. Mike I've a form with serveral submit buttons which should call quite some different functions. Is there a way to overwrite the URL depending on the submit button, calling separ

[jQuery] Re: Form plugin: Multiple submit buttons

2007-05-15 Thread Scott Sauyet
wyo wrote: I've a form with serveral submit buttons which should call quite some different functions. Is there a way to overwrite the URL depending on the submit button, calling separate server functions or do I have to separate them on the server? You could easily do this in JQuery, but then