-1
votes
0answers
16 views

Restrict format and size of Files while uploading them in a form

I am using code given on this page http://the-stickman.com/web-development/javascript/upload-multiple-files-with-a-single-file-element/ to add the feature of multiple photo upload.The code given in ...
-1
votes
4answers
39 views

customizing file upload to look same in all browsers [duplicate]

How do I customize the file upload, <input type="file" /> To look the same in all browsers? I want to invoke file browser on clicking on my custom styled button.
0
votes
0answers
40 views

ajax jquery file upload + formdata

i am trying to upload image files. using following code. but getting error as POST http://localhost/livestock/index.php/submitFile/ajaxFile 500 (Internal Server Error) my javascirpt ...
0
votes
0answers
11 views

Uploading images to Jquery ui Custom Dialog form without Plugins

I am making a pop-up form using jquery ui.The form will have many fields where data can be inserted by a user.I want to add a feature where the user can upload multiple images as well.After the user ...
0
votes
0answers
19 views

malsup file upload page not sumitting as ajax format in IE

When i try to upload an image through ajaxsubmit function or ajax form function the form submit as ajax in Firefox, Chrome etc. but when submit the same in IE the values are sending in the format of ...
0
votes
2answers
39 views

Jquery asynchronous form submission in Rails

I am trying to upload an image using asynchronous submission of form , this is my Rails HTML : <%= form_for(:image, :url => {:controller=> 'questions',:action => 'upload_Qimage'}, :html ...
0
votes
0answers
28 views

Implementing progress bar while uploading excel file to database

I would like to implement a progress bar when uploading excel file to the database. Here is my JSP: <html> <body bgcolor="#FFFFFF" class="normaltext"> <script ...
0
votes
1answer
36 views

Cloudinary returning 401 unauthorized on upload using jQuery

First of all, I must say that the documentation for Cloudinary jQuery plugin is terrible. There needs to be a fully working demo that one can inspect and copy/paste from. I've been trying to ...
0
votes
1answer
70 views

Jquery Blueimp File-Upload callback

I have a simple Image Upload program, where users need to upload large pictures.I am using Blueimp file uploader to upload the image. I am also providing a few input fields for the user to fill meta ...
0
votes
1answer
49 views

Upload file from Javascript

I'm developing a Javascript app and I need to use the Mediafire REST API to upload a file. (See upload ducmentation here). Following this MDN tutorial, and some research, I've written the code below, ...
-1
votes
2answers
73 views

How to delete the uploaded file

I have got a task to upload a file.There is a remove button with this file.If you want to remove,we can press remove button.For that I used the code The code is <div id="main"> <p ...
0
votes
1answer
89 views

Why Blueimp's JQuery File Upload add all prev. selected files even if options [replaceFileInput: false] and [maxNumberOfFiles: 1] are set on init?

I have just normal form with some input fields and one file input field. I use the Blueimp's Jquery File Upload plugin to upload a file. It seems to work, if you select a file and after that click the ...
0
votes
0answers
23 views

how to totally remove any kind of Thumbnails using Jquery FileUpload library?

I'm using JQuery FileUpload to upload files on my server. I need to remove any kind of thumbnails in the html area of upload, but even if i configured the javascript and php to avoid thumbnails, i ...
0
votes
1answer
45 views

How to display invalid file type message in uploadify.js?

I am using uploadify.js for image upload functionality. But when I select invalid file type, it shows a blank alert message. Where should I edit the file to display message as un supported file ...
0
votes
1answer
21 views

Assigning a file input's file with jQuery

I have an empty file input field on a page that I would like to populate with a file that already exists on the page using jQuery. For example, I have the following link: <a href="download.pdf" ...
0
votes
0answers
10 views

jquery file upload windows 8 and windows phone 7 - 8

I developed a web application I used jquery file upload (http://blueimp.github.io/jQuery-File-Upload/) to make the file upload with windows 7 with mac with ios android with everything ok with windows ...
0
votes
0answers
50 views

Suggest a JavaScript on-change alternative for this select file function

Everything works fine in this code. But now, I want to select large no of files (approximately 300 files which, every single file is around 3MB). But when I select, browser crashed, Yes I know its ...
2
votes
2answers
90 views

Cross browser styling “choose file” button

This is my code: html: <form> <input id = "file" type="file" /> <div id="custom_button">custom button</div> </form> Jquery: $("#custom_button").on("click", ...
0
votes
1answer
19 views

jquery file upload: how to change the server upload file before submission

I have been reading the Jquery file upload wiki, but did not come across an example on how to modify the server upload folder on the fly. Is there a working example on how to programmatic modify the ...
0
votes
0answers
16 views

File Uploading IFrame Jquery

I am working an a "Ajax" file upload using the iframe method (it has to be backwards compatible to IE 8). I am able to successfully post my form to the iframe, and the first time it loads, pull out ...
10
votes
2answers
250 views

Image upload from iphone strips exif data

I've built a website which allows image uploading and once an image is uploaded , some specific information about the photo is displayed. Uploading pictures from computers works just fine , the ...
0
votes
1answer
46 views

Cakephp FileUpload Plugin - Session Data - Custom Directory Path

I am currently developing in cakephp 2.3 running in a php5 environment. I have managed to download and implement the Jquery File Upload (https://github.com/hugodias/FileUpload) which is based of ...
0
votes
0answers
31 views

Ajax PUT method upload make the uploaded file no longer accessible

I tried to make script ajax + php to upload files using put method, it is uploading, but the problem is, it makes the uploaded file no longer accessible. sample original file : test uploaded file ...
0
votes
1answer
184 views

How can I upload a file + form data with blueimp's JQuery File Upload using Ajax, not just POST?

I have a form: <div class="row-fluid"> <div class="span5 row-fluid" id="description" style="margin-left:0px;"> <div> <label>Title</label> ...
0
votes
1answer
143 views

Trigger file upload with jQuery

Im trying to create a FORM File input button with my custom styles. Below is the code, but it doesnt work. <style type="text/css"> .pictures { width:200px; height:70px; overflow:hidden;} ...
0
votes
1answer
196 views

Uploading files using jquery in asp.net asynchronously

I was working on a project and it required me to upload image files (preferably all kinds of files). The requirement is that it should upload asynchronously but it seems to me that as I am not using ...
-1
votes
1answer
148 views

JQuery FileUpload

I would like to know how to call a function right after all files are loaded. Not when they are uploaded, I mean right after their html is loaded. I want to trigger my function exactly after all the ...
1
vote
1answer
16 views

file manipulation with out serverside coding

Is it possible to manipulate a file only with client side programming? I am creating a text editor, which takes an uploaded file and need to save to another location after editing. Is it possible with ...
0
votes
0answers
21 views

Best way to implement uploader without nested form?

I have a large profile creation form and I also want to include a photo upload. Currently, I am looking into using the ZURB uploader with preview. The issue is it relies on a small surrounding the ...
1
vote
2answers
59 views

Ajax File Upload storing bytes until save java.

I'm a java developer using Tapestry5. I'm using a jQuery plugin to manage my file uploads via ajax. I'm looking for the best approach to temporarily saving the attachments until the actual page has ...
0
votes
1answer
54 views

How to parse a .zip file in Javascript before uploading to server

I have a situation where a user may have to upload multiple text files, which are then saved on the file system. Instead of asking the user to repeat the same act multiple times I want to give them an ...
0
votes
0answers
37 views

Calculate the checksum (md5 or sh1 )of a file before upload and send the hash to server using uploadify jquery plugin

i want to add and send a variable i.e "Md5ofFile" in the request with each file that are getting uploaded . And again on server verify that the "Md5ofFile" is same as the hash of the file recived ...
2
votes
1answer
23 views

Which browser features should be tested to pick the correct file upload plugin?

We have wrapped the flash-based Uploadify and the HTML5 based UploadiFive uploaders together in a new plugin, so that we don't have to supply two sets of options all the time. This hides all the ...
2
votes
1answer
145 views

How can I use jQuery file upload in webmatrix (ASP.NET Web Pages)?

I would like to use this jQuery file upload with my website https://github.com/blueimp/jQuery-File-Upload and according to the documentation I will need to create my own file upload handler and I was ...
-2
votes
1answer
59 views

Uploading files through AJAX [closed]

I want to be able to upload files using AJAX. I've tried using (JavaScript): $("input[type='file']").change(function(){ var file = document.getElementById("uploadelement").files[0]; ...
0
votes
1answer
92 views

MVC jquery fileupload pass parameter

Hi how can I pass additional parameter using jquery fileupload in mvc, the code looks like this : <label class="imgIcon"> <span><input type="file" id="fileupload" ...
0
votes
1answer
64 views

Jquery mobile File control not working in device

I am using default File control in jquery mobile 1.2.0. Its working fine in browser. But its not working in device. I tried with Samsung Galaxy Tab 2. The control html looks like: <div ...
0
votes
1answer
33 views

Reloading Bluimp jQuery File Upload

I am building an app to upload files into different folders. To change the folder I have a select menu, and to this I have a jQuery function that loads the different folders for upload. The upload ...
0
votes
1answer
71 views

Jquery File Upload Plugin Browse Twice

i use jquery file upload plugin, when i browse some files and add them to list everything is going well. After that when i browse some more files and submit, plugin sends two ajax requests. Because i ...
0
votes
1answer
25 views

how to assign value of readAsDataURL() to a variable?

okay so I've seen many examples and questions on using readAsDataURL(), but none of them seem to resolve my issue. Following is my code : $(document).ready(function(){ var fileReader = new ...
0
votes
1answer
98 views

$.ajax Sending File formdata along with variables

I am trying to create a simple jquery file upload following the steps in this tutorial: http://net.tutsplus.com/tutorials/javascript-ajax/uploading-files-with-ajax/ and it is fully functional and ...
1
vote
1answer
50 views

Event binding on file upload

Is there a way to bind an event when a user selects a file to upload and clicks on "open", I want to trigger the event when the user has clicked on open.
0
votes
1answer
32 views

Reloading function causes onclick handlers to stop working

So I have the following <form id="uploadControls"> <input type="file" id="browseFiles"> <input type="button" id="startUpload" value="Upload"> <input type="checkbox" ...
0
votes
1answer
159 views

Progress bar while uploading large files with XMLHttpRequest

I am trying to upload some large files to the server using XMLHttpRequest and file.slice. I've manage doing this with the help of documentations and other various links. Since uploading large file ...
0
votes
1answer
44 views

Ajax not posting big files

I am uploading files with jQuery's ajax $("#transfer").live("click", function() { var data = new FormData(); data.append("your_email", $("#your_email").val()); ...
0
votes
1answer
61 views

dropzonejs file types

I'm using dropzonejs for a simple file-upload. I currently have a few issues though. I don't know how to restrict the types of files being uploaded. I have file-verification on my PHP-backend, but ...
0
votes
1answer
102 views

jquery.form.js image uploading isn't working in IE

I'm using jquery.form.js to upload images and it's working in all browsers, except IE. version: 3.32.0-2013.04.03 I'm getting SCRIPT5: Access is denied. jquery.form.js, line 531 character 21 I'm ...
1
vote
1answer
223 views

how to use own file process handler on blueimp jQuery File Upload?

I got my own PHP image file upload process handler. I was just looking for a jQuery solution to optimize upload bar and multiple file selections. So I spent some hours to get into jQuery File Upload - ...
0
votes
0answers
11 views

“Re-create” a UI pre-filled with previously uploaded files

I'm able to send picture with jquery-file-upload, everything is ok. But i would like to "re-create" the UI with uploaded pictures and give the possibilities to delete them ; later on another page. To ...
0
votes
0answers
123 views

Passing files blueimp fileupload IE

I have a problem using blueimp fileupload. When I'm trying to upload a file in FireFox or Google Chrome I get on my .NET side the files with length and filename. If I try it in IE I get an empty ...

1 2 3 4 5 21
15 30 50 per page