Просмотр файла delta_framework-main/assets/js/script.js
$(document).ready(function () {
$('.input-file input[type=file]').on('change', function () {
let file = this.files[0];
$(this).next().html(file.name);
});
});
$(document).ready(function () {
$('.input-file input[type=file]').on('change', function () {
let file = this.files[0];
$(this).next().html(file.name);
});
});