cl-deck-builder2/templates/file-js.html

12 lines
403 B
HTML
Raw Permalink Normal View History

2024-01-21 02:35:35 -05:00
<script>
$(document).ready(function() {
const fileInput = document.querySelector('{{ target }} input[type=file]');
fileInput.onchange = () => {
if (fileInput.files.length > 0) {
const fileName = document.querySelector('{{ target }} .file-name');
fileName.textContent = Array.from(fileInput.files).map(x => x.name);
}
}
});
</script>