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 47f7cf0 commit 8f71baeCopy full SHA for 8f71bae
jquery.form.js
@@ -213,7 +213,7 @@ $.fn.ajaxSubmit = function(options) {
213
// This is a utility function to fix deep serialization issues when doing file uploads
214
// eg params show up as "[object Object]" rather than what it should be
215
function formDeepSerialize(extraData){
216
- var serialized = $.param(extraData).split('&');
+ var serialized = $.param(extraData).replace(/\+/g, '%20').split('&');
217
var result = {};
218
var n;
219
for(var i=0, l=serialized.length; i < l; i++){
0 commit comments