Upload Browser Manipulate using JQuery

  1. <input type="file" id="upload"/><br/><br/>  
  2. <select id="optionsName">  
  3. </select>
  1. var names = [];  
  2. $("#upload").change(function(e) {  
  3.    var name = e.target.files[0].name;  
  4.    names.push(name);  
  5.    $("#optionsName").html("<option>"+name+"</options>");  
  6.   
  7. });  

This will add the file name selected into the Dropdown. Use .each() function in JQuery to get the List.
Hope this helps.