Search code examples
jqueryjquery-file-upload

jquery file upload restricting number of files


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


Solution

  • Use maxNumberOfFiles here is documentation :

    $('#fileuploadbasic').fileupload({
    
    maxNumberOfFiles: 6
    
    });