I\'m using the very good jquery plugin blueimp / jQuery-File-Upload
$(\'#fileupload\').fileupload({ autoUpload: true , filesContainer: \'#attachments_prese
I use UI version. Here is script that grabs server links from table of files and populates array:
var files = new Array(); $("#fileupload td p.name a").each(function() { var name = $(this).attr("href"); files.push(name); }); alert(files.join('\n'));