pekeUpload icon indicating copy to clipboard operation
pekeUpload copied to clipboard

jQuery html5 file uploader plugin

Results 21 pekeUpload issues
Sort by recently updated
recently updated
newest added

Example Progress bar ?

The progress bar is not working. And I read the source code found that If you want to see the progress bar,you should add the option: "notAjax:true"... it is not...

pekeUpload.obj.on('change', function() { pekeUpload.checkFile(pekeUpload.obj[0].files[0]); }); //$(document).on("change", this.obj.selector, function() { // pekeUpload.checkFile(pekeUpload.obj[0].files[0]); //}); on "change" event listening on document Also, delete a file, add again, can't change to listening

Hello, handlebuttonevents binds all radio on change so if you have a form with radios and click one you fire upload. In my case I switched to: ``` handlebuttonevents: function()...

Why do you listening to the change event on the document? `$(document).on("change", this.obj, function() { pekeUpload.checkFile(pekeUpload.obj[0].files[0]); });` I have a pekeUpload control and a select2 on the same form, and...

Hello, I've set the errorOnResponse property on creating the control: `$(element).pekeUpload({ errorOnResponse: 'some error' });` and if the server return an error: `return Json(new { error = "not allowed to...

I got 2 problems: error message: 1. pekeUpload.js:192 Uncaught TypeError: Cannot read property 'name' of undefined 2. Uncaught ReferenceError: json is not defined my problems: 1. always return this error...

Hi, I can see drag mode is picking files from orignalEvent.dataTransfer.files and it is working fine without progress bar, when i click on container to pick file, it just did...

Hi, Progress bar does not seem to work where xhr request is sent, progress bar should also move for that file..

You should add sequence upload to upload files one by one, sending ajax request with loop will simply crash browser, for example I've uploaded 500 files that will open 500...