I found the documentation on this subject very spotty. I realized this by looking at the source of this demo .
First you need to include the following dependencies:
Then you can insert the preview image in the DOM, like this (in CoffeeScript):
$(...).fileupload().on 'fileuploadprocessalways', (e, data) -> file = data.files[data.index] if file.preview? myContainer.append(file.preview)
If this does not work, double check that you have included updated versions of all the dependencies.
source share