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
Hi,
It seems that formparams omits array-types even though the input name specifically represents an array:
Given the following html:
<form id="test-form" action="#"> <input type="hidden" name="foo[]" value="bar"> </form>
The following happens currently:
$("#test-form").formParams() -> { foo: "bar" }
But what should happen is:
$("#test-form").formParams() -> { foo: ["bar"] }
see codepen @ http://codepen.io/tunylund/pen/IqCLF
The text was updated successfully, but these errors were encountered:
+1 ! Need this badly
Sorry, something went wrong.
+1 Still
No branches or pull requests
Hi,
It seems that formparams omits array-types even though the input name specifically represents an array:
Given the following html:
The following happens currently:
But what should happen is:
see codepen @ http://codepen.io/tunylund/pen/IqCLF
The text was updated successfully, but these errors were encountered: