We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e9436b commit 0375867Copy full SHA for 0375867
jquery.form.js
@@ -1,6 +1,6 @@
1
/*!
2
* jQuery Form Plugin
3
- * version: 3.20 (20-NOV-2012)
+ * version: 3.21 (1-DEC-2012)
4
* @requires jQuery v1.5 or later
5
*
6
* Examples and documentation at: http://malsup.com/jquery/form/
@@ -225,6 +225,8 @@ $.fn.ajaxSubmit = function(options) {
225
var result = {};
226
var i, part;
227
for (i=0; i < len; i++) {
228
+ // #252; undo param space replacement
229
+ serialized[i] = serialized[i].replace(/\+/g,' ');
230
part = serialized[i].split('=');
231
result[decodeURIComponent(part[0])] = decodeURIComponent(part[1]);
232
}
0 commit comments