Answers for "how to set file upload input empty"

6

jquery clear file input

//clear a file input with jQuery 
$("#myFileInputID").val(null);

//clear file input in plain Javascript
document.getElementById("myFileInputID").value = null;
Posted by: Guest on August-01-2019

Code answers related to "how to set file upload input empty"

Code answers related to "Javascript"

Browse Popular Code Answers by Language