<input type='file' id="uploadImg" name="image[]" accept="image/jpeg" multiple="multiple"/>
I have an input file multiple, I want to limit max-10 files. Is any way to limit user can only select 10 files when their upload window pop?
(I'm not asking about detecting and giving alert, I'm asking about limit files a user can select.)
Maybe something like <input type='file' limit='10' />
?