sirius/pub/js/button.js

4 lines
163 B
JavaScript
Raw Permalink Normal View History

2023-04-22 16:11:29 +03:00
$('.input-file input[type=file]').on('change', function(){
let file = this.files[0];
$(this).closest('.input-file').find('.input-file-text').html(file.name);
});