Tagged Questions
59
votes
8answers
42k views
Is there a good jQuery Drag-and-drop file upload plugin?
Is there a nice tidy jQuery plugin that allows including a single JS script then using a simple snippet to enable a form? Something like this:
$j('#MyForm').enableDragDropUploads('.upload-area')
...
22
votes
2answers
20k views
How to have jQuery restrict file types on upload?
I would like to have jQuery limit a file upload feild to only jpg/jpeg, png, and gif. I am doing backend checking with php already. I am running my submit button through a javascript function already ...
15
votes
2answers
4k views
Preview an image before it is uploaded
I want to be able to preview a file (image) before it is uploaded. The preview action should be executed all in the browser without using Ajax to upload the image.
How can I do this?
12
votes
2answers
487 views
problem in file upload
I have the following markup:
<select multiple="multiple" id="targetFilesList" style="width:200px;height:110px;">
</select>
<input type="button" value="Get" id="btnGet" />
...
12
votes
5answers
795 views
Is it possible to upload file via $.ajax(options) or xhr.send(file) only?
I'm using file api and xhr2 spec. I created an uploader (backed by flash for older browsers) that was using FormData and $.ajax(options) where the FormData object with File was part of options.data ...
11
votes
6answers
23k views
ASP.net - Multiple Upload with jQuery Multiple File Upload Plugin
I know how to upload with ASP.net's FileUpload control.
What I want to do is use this jQuery Multiple File Upload Plugin to upload multiple files.
Here is exactly what it does when multiple files ...
9
votes
2answers
3k views
Great uploader like uploadify but with a “no-flash” fallback
Is there a great uploader script that uses jQuery, like uploadify, but with a fallback option for when flash is not available?
I tried FancyUpload, which has this and uses an invisible IFRAME to do ...
9
votes
4answers
10k views
how to resolve the C:\fakepath?
<input type="file" id="file-id" name="file_name" onchange="theimage();">
This is my upload button.
<input type="text" name="file_path" id="file-path">
This is the text field where I ...
9
votes
2answers
2k views
Unfailing Javascript Image Preview
I have the following code that presents the user with a preview of the image they're trying to upload and works really well in FF:
var img = document.createElement('img');
img.src = ...
8
votes
2answers
12k views
Sending multipart/formdata with jQuery.ajax
I've got a problem sending a file to a serverside PHP-script using jQuery's ajax-function.
It's possible to get the File-List with $('#fileinput').attr('files') but how is it possible to send this ...
7
votes
2answers
240 views
Postpone file uploading form submission until it is validated [closed]
Possible Duplicate:
Pause form submission for validation
It's a continuation of this post. So basically I'm uploading a file in an iframe. But before submitting, I grab data from the form ...
7
votes
1answer
2k views
Using HTML5 file uploads with AJAX and jQuery
Admittedly, there are similar questions lying around on SO. But it seems none quite meet my requirements. Here is what I'm looking to do:
Upload an entire form of data, one piece of which is a ...
7
votes
4answers
11k views
jQuery : simulating a click on a <input type=“file” /> doesn't work in Firefox? [closed]
Possible Duplicate:
In JavaScript can I make a “click” event fire programmatically for a file input element?
I've got a web page that looks like this
<html>
...
6
votes
4answers
943 views
getting upload file size before upload
When the user selects a file to be uploaded, is there a way I can get the exact size of this file before the upload even begins. I'm guessing this needs to be done on the client side with jquery or ...
6
votes
1answer
5k views
Jquery form plugin file upload
i have a problem with jquery form plugin.
I try to upload a file asynchronously but it does not submit the form.
html markup and javascript code are like below
<form id="fileUploadForm" ...
6
votes
5answers
3k views
clearing an HTML file upload field via JS
i want to reset a file upload field when the user selects another option
is this possible via JS? i'm suspecting that the file upload element is treated differently b/c it interacts with the user's ...
5
votes
1answer
85 views
Uploading files using jquery without page refresh
I have an update profile page.
It has three forms, it uses a get request to show any one form.
Like update_profile.php?type=profile lets the user edit his profile, update_profile.php?type=settings ...
5
votes
2answers
48 views
What is the Javascript event that triggers when you drag a file from your desktop to your browser
I'm trying to implement a file upoload system similar to gmail's. I've already done all the Fileupload / AJAX issue and it works perfect. The only problem that I have is User Feedback.
For example.. ...
5
votes
1answer
1k views
Blueimp jQuery file upload, passing extra form data
I could use some help... I've managed to make blueimp jQuery file upload work for me but I'm still definitely a newbie at this, I know very little about jQuery etc so please try to give it to me as ...
5
votes
3answers
641 views
AJAX File Upload with the “Form Plugin” for JQuery
I am using JQuery and I would like to upload files with AJAX. I have made some searches and found it is not possible.
However there is one jQuery plugin which allows us to upload files throught AJAX ...
5
votes
3answers
1k views
A file input button for all browsers, is this possible?
Is it possible to use uploadify to allow any user to select a file from the file dialogue and insert it into the file input element of a form? I only need to use uploadify as a way to style the ...
5
votes
2answers
2k views
File API File Upload - Read XMLHttpRequest in ASP.NET MVC
I am trying to implement Gmail style drag-and-drop file upload in ASP.NET MVC.
I have been following this article: http://robertnyman.com/html5/fileapi-upload/fileapi-upload.html and want to post ...
5
votes
1answer
2k views
“Valums” file uploader and method POST
My problem is that the file-uploader http://valums.com/ajax-upload/ adds params to the URL instead of passing them by POST.
For example:
action:'/upload.php'
params : { x1:'x1'}
... will submit as ...
5
votes
2answers
464 views
file upload using drag drop
I want to upload and download files using drag n drop between user computer and web browser. How can I do it ASP.NET/AJAX or JS/JQuery?
5
votes
1answer
749 views
Multiple File Upload with jQuery
I am trying to allow multiple file uploads prior to a form post. What I'd like is for the user to only ever see one file upload element, and each time a file is selected, show a new <li> that ...
5
votes
2answers
2k views
How to make Asynchronous(AJAX) File Upload using iframe?
I'm trying to make ajax file upload . I read that it is not possible to do that without using iframe .
I wrote :
<iframe id="uploadTrg" name="uploadTrg" height="0" width="0" frameborder="0" ...
5
votes
2answers
775 views
TinyMCE and pluploader not working together
I want to have an instance of both TinyMCE textarea and pluplupload custom file uploader on on web page. The problem is that in my Firefox 3.6 or Google Chrome they just don't work together. I checked ...
5
votes
3answers
6k views
jQuery Ajax File Upload
Can I use this below jQuery form to perform file upload using post method Ajax request ?
$.ajax({
type: "POST",
timeout: 50000,
url: url,
data: dataString,
success: function(data) ...
5
votes
7answers
7k views
Trying to find an AJAX file upload solution for Zend Framework using jQuery
I'm trying to create an "upload file, and email as an attachment" form where the file starts uploading after it has been selected (like Gmail), before sending the email. I would also like to implement ...
5
votes
5answers
23k views
jQuery - receiving the $_FILES array using $.post
I am attempting to submit a form via jQuery. My form contains fields and a file that must be uploaded. It is of type ENCTYPE="multipart/form-data".
I can receive all my field values using: post = ...
4
votes
2answers
261 views
Upload entire directories using Uploadify (or something else)
I am using uploadify along with ASP.NET to upload files to my server. At the moment I have to recreate the folder structure and upload the images in batches per directory.
Does anyone know of a way ...
4
votes
5answers
5k views
jQuery Upload Progress and AJAX file upload
It seems like I have not clearly communicated my problem. I need to send a file (using AJAX) and I need to get the upload progress of the file using the Nginx HttpUploadProgressModule. I need a good ...
4
votes
1answer
2k views
how do to file upload using jquery serialization
So I have a form and I'm submitting the form through ajax using jquery serialization function
serialized = $(Forms).serialize();
$.ajax({
type : "POST",
...
3
votes
2answers
50 views
Send raw file data from input type=file over ajax
I have a simple form:
<form enctype="multipart/form-data" id="imageupload">
<input name="files" type="file" />
<input type="button" value="Upload" />
</form>
Now I ...
3
votes
1answer
90 views
copying the value of a form's file input field to another form's input field
So I have two forms, both have a file type input field and I tried
$('.inputfield1').change(function(){
var file = $(this).val();
$('.inputfield2').val(file);
});
but then it doesn't get ...
3
votes
1answer
64 views
How can I integrate jQuery UI's drag and drop with files?
I want to be able to drag and drop files into different places in the page to mean different things. I am already using jQuery UI's drag and drop interface and it would be nice if I could integrate ...
3
votes
1answer
1k views
Why doesn't Blueimp's jQuery-File-Upload plugin fire callbacks?
I'm experimenting with Blueimp's jQuery-File-Upload plugin, which judging by the demo looks very promising.
It's really easy to implement:
var $uploadButton = $("#fileop-upload");// <input ...
3
votes
2answers
316 views
Using jQuery to upload a file without clicking “Upload”
I'd like to have an <input type="file"> form element that fires the upload process immediately after the user chooses a file, without the need to the user to take the second additional step of ...
3
votes
1answer
137 views
How to create Ajax based multiple file selector uploader?
Hello Guys!
I want to create a site with a multiple file uploading through a singe button. And as I'm very new to the world of Web-Based Scripts, can anyone provide me a link to get my answer?
...
3
votes
2answers
801 views
Async upload problem using jquery.form.js
I'm using the jquery.form plugin to asynchronously upload documents in an MVC project.
Taking my lead from this previous answer, here's what I have on the page:
<% using(Html.BeginForm("Create", ...
3
votes
3answers
354 views
Uploading images prior to submitting a form in MVC using ajax/jQuery
I'd like to build a form in my MVC app that contains a couple of input fields. Besides that I'd like to have the user asynchronously upload some images by selecting an image on his harddrive, then ...
3
votes
4answers
616 views
file input - prevent selection of certain types of files and size
Is there a way to prevent the user from selecting a file that is not a specified file type when they browser for the file on their computer? For example, when a user browseses to upload an image file ...
3
votes
4answers
3k views
Detecting IsAjaxRequest() with ASP.NET MVC and JQuery Form Plugin / File Upload
I'm using the JQuery Form plugin to do a file upload on an ASP.NET MVC application. I've learned that since an iframe is used for file uploads (rather than XMLHttpRequest, which isn't possible), the ...
2
votes
1answer
43 views
calling a jQuery method from code behind method
I'm working on an image gallery, where the user can upload images. When an image is upload a message shall be visible for some seconds, which I want to do by making a div visible (for like 5 seconds) ...
2
votes
2answers
43 views
How to place an “inline image” in form before upload?
I want to allow users to write a post and upload images inline through out it (like a CMS blog post). Writing the file upload script is easy. But allowing a "place inline" button / functionality is ...
2
votes
3answers
105 views
$(“:focus”) returns no element for <input type=“file” /> in Firefox
I can't seem to get the currently focused/active element as a jQuery object in Firefox, if it is an <input type="file" />. It works on other input types (text, password, submit, others) and on ...
2
votes
1answer
53 views
jquery mouseover() that checks for files in drag and drop?
Is there any version of jquery's .mouseover() that can be used to check if the user is dragging files to the mouseover state?
The context is that when a user hovers over a div, if they're holding ...
2
votes
4answers
209 views
File upload over Ajax in Spring 3.0
Which is the best or easiest ways to upload file over Ajax in Spring 3.0?
I want to submit a form over Ajax which will contain a File.Also solution should not be dependant on Flash etc. like ...
2
votes
1answer
85 views
JQuery AJAX sending files array from form
I got this code somewhere to upload pics without refreshing the browser. However I didn't like the uploader file so I decided to use the old one I used to work with. The problem is that it is sending ...
2
votes
1answer
128 views
IE9 file input triggering using Javascript
I had a post here:
.change acting weird in IE9
However, I have run into a new incident regarding the form handling of file upload and was curious if anyone has run into this issue.
My original ...