1
I am trying to set as read-only an input file type when clicking on Ubmit, but the way below did not work. Any suggestions?
<script>
$(document).ready(function() {
$("#salvar").on('click', function() {
$('#arquivo').prop('readonly', true);
});
});
</script>
Thanks for the help, but this way it "loses" the file and the same won’t even go to the next screen. I’m testing a . Hide().
– Diego