4 lines
164 B
JavaScript
4 lines
164 B
JavaScript
function reset_file_input(objID) {
|
|
document.getElementById(objID).setAttribute('type', 'input');
|
|
document.getElementById(objID).setAttribute('type', 'file');
|
|
} |