I have a simple html form with a single file upload input. (jsfiddle)
In the past, I have accessed the file selected by the user using input.files, howe
input.files
$(function () { $("#cmdSubmit").bind("click", function () { alert(this.files); }); });