I want to disable the input file property with Javascript so that it couldn't browse the file. Please help.
Found this but it is in Jquery
$('#images').prop('disabled', true);
I want to disable the input file property with Javascript so that it couldn't browse the file. Please help.
Found this but it is in Jquery
$('#images').prop('disabled', true);
Access the HTML disabled attribute then set it to true, you can try with
document.getElementById("images").disabled = true;
For more information, https://developer.mozilla.org/en-US/docs/Web/API/HTMLSelectElement/disabled