I'm building an photo uploader. When user choose a photo from <input type="file">
I use jquery to submit the selected file from user to my server, the server save that image to disk and make a thumbnail.
The server return the URL of the thumbnail to client.
Then jquery display the image to user. That is client/server.
Now, can I show the thumbnail of selected file from user without post it to Server ?
( It's like Facebook photo uploader, we needn't click Preview to view thumbnail of selected Photo. Facebook do it for us )