I have a select choice of files to upload can be single or multiple as I select I would like to have a text below stated the path of the files I have selected.
 <form action="mymethod" enctype="multipart/form-data" method="Post"     id="submitForm">
<input id="file" name="file[]" multiple type="file">
Upon selecting the file let say its 3:
it will show on the screen:
however currently it is showing:
here is my script:
<script>
                    var selDiv = "";
                    document.addEventListener("DOMContentLoaded", init,
                            false);
                    function init() {
                        document.querySelector('#file').addEventListener(
                                'change', handleFileSelect, false);
                        selDiv = document.querySelector("#selectedFiles");
                    }
                    function handleFileSelect(e) {
                        if (!e.target.files)
                            return;
                        selDiv.innerHTML = "";
                        var files = e.target.files;
                        for ( var i = 0; i < files.length; i++) {
                            var f = files[i];
                            selDiv.innerHTML += f.name + "<br/>";
                        }
                    }
</script>
Prehaps you guys could give me suggestion on how I would tackle this issue?



 
    