Answers for "how to clear the input file in jquery"

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
2

clear input field jquery

$('#shares').val('');
Posted by: Guest on July-18-2020

Code answers related to "how to clear the input file in jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language