Note:
The answer(s) below reflect the state of legacy browsers in 2009. Now you can actually set the value of the file input element dynamically/programatically using JavaScript in 2017.
See the answer in this question for details as well as a demo:
How to set file input value programatically (i.e.: when drag-dropping files)?
Without upload(browse) a file I want to set a value of fileuploader
through button click.Is it possible or I am in wrong way?
sample html:
<input type="file" id="files" />
<input type="button" id="btnTest" value="Test"/>
and jquery:
$("#btnTest").click(function() {
alert('test');
//$('#files').html('pp.img');
//$('#files').val('pp.img');
$('#files').text('pp.img')
});
But its not work for me .