Re: [jQuery] Form plugin: default method

2006-10-10 Thread Mike Alsup
Another form thing... this line in ajaxSubmit: vars.push({name: 'evaljs', value: 1}); seems to be left over from an older version. I don't believe we need this anymore. Mike ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Form plugin: default method

2006-10-10 Thread Mike Alsup
> Therefore I propose the default method should be 'GET' as it is the case > for a form in HTML: Good catch, Klaus. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Form plugin: default method

2006-10-10 Thread Klaus Hartl
Sam Collett schrieb: > On 10/10/06, Klaus Hartl <[EMAIL PROTECTED]> wrote: >> Hi, >> >> the objective of the form plugin is to completely mirror the behavior of >> a standard form. >> >> Therefore I propose the default method should be 'GET' as it is the case >> for a form in HTML: >> >> line 50:

Re: [jQuery] Form plugin: default method

2006-10-10 Thread Webunity | Gilles van den Hoven
Sam Collett wrote: > Is it the default on all browsers? If so, then perhaps that would be a > good idea. > I agree with Klaus, all resources i found point that GET is the default method. -- Gilles ___ jQuery mailing list discuss@jquery.com http://jq

Re: [jQuery] Form plugin: default method

2006-10-10 Thread Sam Collett
On 10/10/06, Klaus Hartl <[EMAIL PROTECTED]> wrote: > Hi, > > the objective of the form plugin is to completely mirror the behavior of > a standard form. > > Therefore I propose the default method should be 'GET' as it is the case > for a form in HTML: > > line 50: > > var mth = mth || f.method ||

[jQuery] Form plugin: default method

2006-10-10 Thread Klaus Hartl
Hi, the objective of the form plugin is to completely mirror the behavior of a standard form. Therefore I propose the default method should be 'GET' as it is the case for a form in HTML: line 50: var mth = mth || f.method || 'POST'; should be changed to: var mth = mth || f.method || 'GET';