Guest User

Untitled

a guest
Feb 25th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <script>
  2. Dropzone.options.myDropzone = {
  3. paramName: 'file',
  4. maxFilesize: 10, // MB
  5. maxFiles: 20,
  6. acceptedFiles: ".jpeg,.jpg,.png,.gif,.pdf,.doc,.docx,.xlsx,.xls",
  7. };
  8.  
  9. this.on("successmultiple", function (file) {
  10. alert("All files have uploaded ");
  11. });
  12. </script>
Add Comment
Please, Sign In to add comment