I have the following input type file with multiple attribute:
<input accept=".txt" id="File" multiple="" name="File" type="file" />
When I use jQuery to read the input value:
$("#File").val()
I selected from my PC, two files. If I call above function it returns:
C:\fakepath\1.txt
I expect to return 2 file values (I don't know, separated by comma or other separator).