Do you know any file picker / downloader for jQuery?

I am creating an application that requires the user to select an image file from the image folder on the server.

What I'm looking for is a popup plugin that, when you click the browse button, displays a list of all the files in the specified folder and returns the file name of the selected file. In addition (but not necessarily), I would like it if it were possible to upload a file before selecting and display the files as thumbnails.

A very good example (without loading an image) using Mootools:

http://www.k1der.net/modules/blogs/public/country/demo/brooser.html

Do you know any similar plugins with jQuery?

+4
source share
2 answers

JQuery file selection

The File Select plugin searches for a directory for files and lists them. After selecting a file, information that the file is "selected" is returned.

I haven’t tried, but it's worth a look, I think

+1
source

All Articles