Side navigation
#4003 closed enhancement (invalid)
Opened January 27, 2009 10:54AM UTC
Closed December 02, 2010 08:07AM UTC
serializeArray / map
Reported by: | Orgoth | Owned by: | Orgoth |
---|---|---|---|
Priority: | major | Milestone: | 1.3.2 |
Component: | ajax | Version: | 1.3.1 |
Keywords: | serialize | Cc: | |
Blocked by: | Blocking: |
Description
please excuse my bad english ^^
jquery-1.3.js
line: 3179 to 3186 / map function
by serializing a form with a multi select, the serialize wont work as expected for me
return of an multi select with serialize:
&anfr_gesell=34&anfr_gesell=1&anfr_gesell=22
return of an multi select with serialize and box name "anfr_gesell[]":
&anfr_gesell=Array
with this two returns i cant work^^
i changed it for me with an change on the map function
check for this.tagName == 'SELECT' and parse the array to and csv string:
&anfr_gesell=34,1,22
i hope i could help
Please provide a jsfiddle test case.