I have some elements like these:

<input type="file" name="fake">

<input type="file" name="real" style="display:hidden;">

<a href="javascript:void(0)"  onclick="addToList()">

<input type="submit" name="submit" value="Submit">

My question is : is it possible to assign the value of the "fake" input to "real" input by using jquery? So that when I hit Submit button, the "real" file input will be uploaded.

addToList = function(){
    //what should I do here to assign the "real" file input value
}
link|improve this question

67% accept rate
1  
If it was possible - then everyone could steal any file from your PC – zerkms Sep 20 '11 at 4:13
Thanks for noticing me. I really dont know that risk. – quangtruong1985 Sep 20 '11 at 4:19
feedback

1 Answer

My understanding is that generally you won't be able to assign a file to a file input element-- this is a security restriction so that you can't programmatically grab random files off of someone's disk.

I'm not sure what you are trying to accomplish, but there is some newer HTML5 capabilities that might help documented here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.