55
votes
8answers
40k 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')
...
20
votes
2answers
19k 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 ...
14
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?
11
votes
2answers
472 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" />
...
11
votes
5answers
729 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
22k 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
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
9k 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 ...
8
votes
4answers
9k 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 ...
7
votes
2answers
233 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 ...
6
votes
4answers
868 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
989 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
611 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
893 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
1answer
1k 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
435 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
720 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
727 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
5k 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
3answers
10k views
jQuery : simulating a click on a <input type=“file” /> doesn't work in Firefox?
I've got a web page that looks like this
<html>
<head>
<title>File Upload Click Test</title>
<script type="text/javascript" ...
5
votes
5answers
22k 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
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 ...
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",
...
4
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 ...
3
votes
1answer
40 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
55 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
868 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
294 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
133 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
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 ...
3
votes
2answers
722 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
336 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
566 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
3answers
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
0answers
53 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
57 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 ...
2
votes
1answer
67 views
Flash runtime doesn't work in IE8 using PLupload
I have the simple javascript function inside $(function() { ... }); body
var uploader = new plupload.Uploader({
runtimes: 'html5,flash,silverlight',
browse_button: 'pickfiles',
...
2
votes
4answers
150 views
JQuery - Drag n Drop Files - How to get file info?
Interested in building my own drag'n'drop file uploader using JQuery/AJAX/PHP.
Basically I want a file-uploader that users of my site can just drag the file from their computer into a div I created, ...
2
votes
5answers
139 views
file upload button without input field? [closed]
Possible Duplicate:
jQuery : simulating a click on a <input type=“file” /> doesn't work in Firefox?
Is it possible to have a file button without an input beside it by ...
2
votes
2answers
131 views
jQuery multiple file upload plugin
i am using the multiple file upload plugin using jQuery: http://blueimp.github.com/jQuery-File-Upload/
the Upload handler provided in this plugin is in php. Is there and upload handler with similar ...
2
votes
1answer
146 views
uploading images with jQuery in ASP.NET MVC
I need to upload a single image to server. The project is using .NET MVC, jQuery and jQueryUi. I'm looking for a mechanism that works given the following restrictions:
I can't modify the view files ...
2
votes
1answer
695 views
Rails 3.1 + Paperclip + jQuery fileupload
I've been looking for a way to set up Ruby on Rails 3.1 with Paperclip and jQuery fileupload. Looking at a tutorial at jQuery fileupload page I got the system set up but I can't find a way to make ...
2
votes
2answers
126 views
Why can this plugin upload file via ajax?
We know that file cannot be upload via ajax, but I don't understand why this ajax upload file plugin is using plain ajax?
_upload: function(id, params){
var file = this._files[id],
...
2
votes
3answers
151 views
Make server-side validation without losing data on postback
I would like to know which is the best way to do this: I have a form using ASP that is being validated firstly on client-side with jQuery. In this form I have a FileUpload control to upload an Excel ...
2
votes
1answer
93 views
Html file upload file with drag and drop support
i would like to create a file-upload field where users can just drag and drop a file onto a certain area in the browser window.
does this work with all modern browsers?
thanks!