Here\'s the plugin: https://github.com/blueimp/jQuery-File-Upload
I\'m having a problem getting the response I want from the plugin after uploading a file.
O
Since the version 5 of the plugin, the json response has changed: https://github.com/blueimp/jQuery-File-Upload/wiki/JSON-Response
So you just have tweak your upload class with:
$filejson = new stdClass(); $filejson->files[] = $fileArray; return json_encode($filejson);
And you're done