extract uploaded filename in javascript 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())