0
votes
0answers
26 views

AjaxFileUpload in Codeigniter Not working

I used this as my reference for my file upload in codeigniter. After fixing everything and apply it to my system, I got one error. As soon as I click submit, it alerts "undefined" so I'm stucked. ...
0
votes
0answers
41 views

Change file name of HTML file upload

I am using the following code to change the name attribute of file. But it is not working. The file name remains the same. HOw can I change it? Any help? Short code: $(fileData).prop('name', ...
0
votes
3answers
108 views

Uploading multiple files asynchronously by blueimp jquery-fileupload

I'm using jQuery File Upload library (http://github.com/blueimp/jQuery-File-Upload), and I've been stuck figuring out how to use the library satisfying the following conditions. The page has ...
0
votes
0answers
147 views

Adapt jQuery-File-Upload for user profile image

I want to adapt jquery-file-upload http://blueimp.github.io/jQuery-File-Upload/ to use like user profile image uploader, 1- only upload one image - you can restrict whit: maxNumberOfFiles: 1, ...
0
votes
0answers
132 views

blueimp jQuery fileupload plugin with wordpress

I want to integrate jQuery file upload with wordpress. The basic function I want is to pass files[] to wordpress and let him handle this upload. I know it is possible becasue of this plugin here: ...
0
votes
3answers
406 views

How do I change the default upload path for jquery file upload

I have implemented the jQuery file upload plugin with a php framework it was relatively straight forward following the instructions. https://github.com/blueimp/jQuery-File-Upload My question is ...
1
vote
0answers
154 views

jQuery blueimp fileupload send only file params without other formdata

I have a form in which i user jQuery file uploader My form contains lot of other fields other than the profile picture the user uploads. I want to upload the profile picture by sending only profile ...
0
votes
0answers
53 views

How to make an Ajax Request from JQueryFileUpload plugin

I am using JQuery File Upload plugin and I want to achieve below functionality.. Default Behaviour: As soon as the user selects files to upload "_onChange" and "add" events are triggered to display ...
0
votes
1answer
235 views

jQuery-File-Upload - not work with any elements?

Here: https://github.com/blueimp/jQuery-File-Upload/wiki/Frequently-Asked-Questions i read this: If you define the url (and probably paramName) Options, you can call the plugin on any element - no ...
0
votes
0answers
378 views

Blueimp jQuery File Upload - How do I post the data without using form tags?

I am attempting to implement the Blueimp Jquery File Upload. I am using C# asp.net to do this with, currently I am attempting to build a control for the sake of re use across the project. So here's ...
0
votes
1answer
5k views

upload file using jquery ajax

I'm trying to upload a file with jquery but I don't want to refresh the page. I read some duplicate questions but they didn't solve my problem. please tell me if I'm wrong in using codes. ...
0
votes
1answer
185 views

Jquer.Form.Js AJAX file upload issue in IE8 only

I am using Jquery.Form.Js plugin for ajax file upload. It is working fine in all browers and versions except IE8. When i upload in IE 8, the file gets uploaded but browser hangs on response. Suddenly, ...
0
votes
1answer
446 views

Loading jQuery-File-Uploader asynchroniously

I'm using the jquery/bootstrap file uploader from github and want to load it asyncroniously. I know I'm not doing something, but I don't know what to do to get it to work after being loaded ...