We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In ajaxSubmit there is line:
ajaxSubmit
method = options.type || this.attr2('method');
And what if options has only method and no type specified? According to jquery reference, method is alias for type. Maybe add both?
options
method
type
The text was updated successfully, but these errors were encountered:
https://api.jquery.com/jQuery.ajax/#jQuery-ajax-settings jQuery 1.9.0 prefers setting method (values: "GET", "POST", "PUT") Prior to 1.9.0, must use legacy setting type (same values)
Sorry, something went wrong.
Adds method option for API compatibility with newer versions of jQuery
090c011
resolves #486 Add 'method' option
55fba84
No branches or pull requests
In
ajaxSubmit
there is line:And what if
options
has onlymethod
and notype
specified? According to jquery reference,method
is alias fortype
. Maybe add both?The text was updated successfully, but these errors were encountered: