All, I'm trying to have a button that when I click it opens up and allows the user to select multilpe files to be uploaded to my site. How can I do this?
After the user selects the files how would I use this bit of code to show the file names that the user selected:
var files = $('input[type="file"]')[0].files;
for (var i = 0; i < files.length; i++)
{
alert(files[i].name);
}
Any guidance you can provide on this would be greatly appreciated! Thanks in advance!