I have a file upload option like so.
<input type="file" name='image1' id='image1'>
then, i have a button which onclick, runs the function addphotos(). Para is the id of a paragraph.
function addphotos() {
document.getElementById("para").innerHTML=document.getElementById("image1").text;
}
Now, when we upload a file, a filename is displayed. e.g. picture.png I want to print this filename in the position of the paragraph. The above function is not working. How can we do this. It is also okay if we can store this filename in a javascript variable.