javascript get name of file upload code example

Example 1: get uploaded file name in js

$('input[type="file"]').change(function(e) {
        var fileName = e.target.files[0].name;
        $(e.target).parent('div').find('.form-file-text').html(fileName)
  		// Inside find search element where the name should display (by Id Or Class)
});

Example 2: get uploaded file name

fake_path=document.getElementById('FileUpload1').value
alert(fake_path.split("\\").pop())

Example 3: js get the filename you uploaded

var fu1 = document.getElementById("FileUpload1");
alert("You selected " + fu1.value);

Tags:

Html Example