Reputation: 65
I am using blueimp jquery file upload to upload files. However I want a single file to be selected at a time. How do I disable selecting multiple file selections, not meant removing multiple from input. I do not want add another file when one file is selected
Upvotes: 3
Views: 208
Reputation: 4502
You can disable the element. By using
document.getElementById("ElementID").disabled = true;
Upvotes: 0
Reputation: 1
You can remove the element from document
at change
event, using Node.removeChild()
or set element style
to display:none
Upvotes: 2