Alonso Cauich
Results
1
comments of
Alonso Cauich
Hi!!! You can try something like that: ``` function remove_selected(id_input){ var fileInput = document.getElementById(id_input) fileInput.value = '' fileInput.dispatchEvent(new Event('change')); } remove_selected('file'); ```