pekeUpload
pekeUpload copied to clipboard
jQuery html5 file uploader plugin
I'm getting this error on file upload of type video. The video will show as if it wants to preview then the error will popup. I checked the file upload...
chunking
can you add chunking thanks
With this script i can't upload multiple files. I added input like this: `` but even if i choose multiple files, the preview shows me only one and in php...
Solution: Replace `$(document).on("change", this.obj.selector, function() { pekeUpload.checkFile(pekeUpload.obj[0].files[0]); });` With `$(document).on("change", '#div-block-where-upload-form-is', function() { pekeUpload.checkFile(pekeUpload.obj[0].files[0]); });`
File Details: ` $("#file1").pekeUpload({ limit: 1, onSubmit: true }); $("#file2").pekeUpload({ limit: 1, onSubmit: true }); $("#file3").pekeUpload({ limit: 1, onSubmit: true }); ` I want to select one file for each...
How to destroy pekeUpload?
In ReadMe usage is like this: > | allowedExtensions | "" | "ext1" | Sets the file extensions allowed to upload | however user can not understand how to use...
Is it possible to delete the uploaded file on clicking the "remove from queue" button? And how to set the file type?
For documentation only, it appears the maxSize option should be specified in bytes not MB
How to properly initialize pekeUpload using "class" selector (not ID), something like : `$(".uploader").pekeUpload();` I want initialize many form input with pekeUpload in one page with same configuration. All parameters...