JQuery: open file download window by clicking a link or image.?

Is it possible to open the file download window by clicking on the image or link. (for example, what exactly in <input type="file" name="upload" /> ).

+7
javascript jquery html mootools
source share
1 answer

Take a look at the jQuery ajax upload plugin . It allows you to upload files via "ajax" (technically not quite, but the effect is the same) and does not use the input buttons (technically it does, but they are invisible).

+7
source share

All Articles