[jQuery] Re: Combining jQuery validation, ajax Submit and jqUploader

2009-02-26 Thread Gelegrodan
"submitHandler CallbackDefault: default (native) form submit Callback for handling the actual submit when the form is valid. Gets the form as the only argmument. Replaces the default submit. The right place to submit a form via Ajax after it validated. Submits the form via Ajax when valid

[jQuery] Re: Combining jQuery validation, ajax Submit and jqUploader

2009-02-23 Thread Andri
I think the problem is not on serialize, because the ajax submit is working when using this function $("#RegForm").submit(function(){ var str = $(this).serialize(); $.ajax({ type: 'POST', url: 'ajax.php', da

[jQuery] Re: Combining jQuery validation, ajax Submit and jqUploader

2009-02-23 Thread tain
i forgot to add link for more details about serialize() http://docs.jquery.com/Ajax/serialize On Feb 23, 11:12 am, tain wrote: > this is what i found on jquery.documentation, > > "Serialize requires that fields have a name attribute. Having only an > id will not work." > > On Feb 23, 8:10 am, A

[jQuery] Re: Combining jQuery validation, ajax Submit and jqUploader

2009-02-23 Thread tain
this is what i found on jquery.documentation, "Serialize requires that fields have a name attribute. Having only an id will not work." On Feb 23, 8:10 am, Andri <4r53...@gmail.com> wrote: > I have a form, and i want to combing jquery validation ajax Submit and > jquploader. > > This is the scrip