You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the 2.x version of the plugin,<select name="foo[]" multiple> works fine, you just have to use the proper name attribute with the [] operator on it.
I had a 'multiple' attribute in my select element and only the last selected value would get passed along.
Basically I edited one function and added another. To me it seems 'dirty'.
Also added the following to the public API:
I have NOT tested anything beside that I get a object with named key and an 'array' as value IE:
Object{
name : array[x]
0 : 'value',
1 : 'value',
2 : 'value',
}
etc
I wonder if multiple select is going to be supported?
The text was updated successfully, but these errors were encountered: