[jQuery] Re: error when uploading files

2009-09-04 Thread Alin
I had the same problem, just rename the submit button to something else, an example: input id=submitButton type=submit value=update name=submitButton/ On Sep 2, 8:27 pm, undertow qode.qr...@gmail.com wrote: I get an error Error: Form elements must not be named submit. when i have a form with

[jQuery] Re: error when uploading files

2009-09-04 Thread Mike Alsup
I get an error Error: Form elements must not be named submit. when i have a form with the ability to upload files.  If a file is selected for upload i get the error, and not when there is no file for upload. why is that?  what difference does it make if there is a submit button? This is a

[jQuery] Re: error when uploading files

2009-09-04 Thread Dave Methvin
I get an error Error: Form elements must not be named submit This is a handy page to use for checking your code, or just for reading the notes to be sure you aren't using any of the special DOM names that trigger problems. http://yura.thinkweb2.com/domlint/

[jQuery] Re: error when uploading files

2009-09-04 Thread Mike Alsup
This is a handy page to use for checking your code, or just for reading the notes to be sure you aren't using any of the special DOM names that trigger problems. http://yura.thinkweb2.com/domlint/ Excellent link, Dave. Thanks.