Просмотр файла delta_framework-main/assets/js/script.js

Размер файла: 184B
$(document).ready(function () {
    $('.input-file input[type=file]').on('change', function () {
        let file = this.files[0];
        $(this).next().html(file.name);
    });
});