Get a list of files attached to an <input> element
I wrap some jQuery functions around a jQuery file upload plugin. It uses the <input type="file" name="files[]" multiple="multiple">
element to make it seem like "connecting" the selected files before downloading. When the form on which the input is posted is submitted, the files are analyzed on the server.
To debug my user interface, I need to see a list of files that are currently โattachedโ to the input. Is this possible with Firebug or the Chrome debugger?
+6