views:

623

answers:

2

How to make the browser upload and display image after the user puts it in the file upload widget? I've got a form where an image should be uploaded and edited by the user on the fly (before they hit submit). Can I do it with Jquery?

+1  A: 

Take a look at the JQuery MultiFileUpload plugin.

JacobM
A: 

MultiFileUpload plugin should give you what you're looking for. It's important to remember that ajax does not support transferring binary files - you'll need an embedded IFrame to do the work for you.

uidzer0