jquery file upload restricting number of files

Uahmed picture Uahmed · Apr 15, 2013 · Viewed 34.2k times · Source

I am using jquery file upload to upload the files to the server . I want to restrict the user to upload maximum 6 files . I search the wiki jquery file upload but didnt find the parameter for it . Is there any way that i can restrict the user on number of uplaods

Answer

Mohamed Ali picture Mohamed Ali · Apr 15, 2013

Use maxNumberOfFiles here is documentation :

$('#fileuploadbasic').fileupload({

maxNumberOfFiles: 6

});