1$('input[type="file"]').change(function(e) {
2 var fileName = e.target.files[0].name;
3 $(e.target).parent('div').find('.form-file-text').html(fileName)
4 // Inside find search element where the name should display (by Id Or Class)
5});
1var fu1 = document.getElementById("FileUpload1");
2alert("You selected " + fu1.value);