I want to be able to preview a file (image) before it is uploaded. The preview action should be executed all in the browser without using Ajax to upload the image.
How can I do this?
|
I want to be able to preview a file (image) before it is uploaded. The preview action should be executed all in the browser without using Ajax to upload the image. How can I do this?
| |||||
feedback
|
|
Please take a look at the sample JS code below:
and the associated HTML:
Also, you can try this sample here. | |||||||||||
feedback
|
|
The answer of LeassTaTT works well in "standard" browsers like FF and Chrome. The solution for IE exists, but looks different. Here description of cross-browser solution: In HTML we need two preview elements, img for standard browsers and div for IE HTML:
In CSS we specify the following IE specific thing: CSS:
In HTML we include the standard and the IE-specific Javascripts:
The pic_preview.js is the Javascript from the LeassTaTT's answer. Replace the $('#blah') whith the $('#preview') and add the $('#preview').show() Now the IE specific Javascript (pic_preview_ie.js):
That's is. Works in IE7, IE8, FF and Chrome. Please test in IE9 and report. The idea of IE preview was found here: http://forums.asp.net/t/1320559.aspx http://msdn.microsoft.com/en-us/library/ms532969(v=vs.85).aspx | ||||
feedback
|