Questions tagged [jquery-file-upload]

jQuery File Upload is a blueimp.net widget with multiple file selection, drag&drop support, progress bar and preview images for jQuery.

jQuery File Upload is a widget with multiple file selection, drag&drop support, progress bars and preview images for jQuery.
It supports cross-domain, chunked and resumable file uploads and client-side image resizing.
It works with any server-side platform (PHP, Python, Ruby on Rails, Java, Node.js, Go etc.) that supports standard HTML form file uploads.

Features

  • Multiple file upload:
    Allows to select multiple files at once and upload them simultaneously.

  • Drag & Drop support:
    Allows to upload files by dragging them from your desktop or filemanager and dropping them on your browser window.

  • Upload progress bar:
    Shows a progress bar indicating the upload progress for individual files and for all uploads combined.

  • Cancelable uploads:
    Individual file uploads can be canceled to stop the upload progress.

  • Resumable uploads:
    Aborted uploads can be resumed with browsers supporting the Blob API.

  • Chunked uploads:
    Large files can be uploaded in smaller chunks with browsers supporting the Blob API.

  • Client-side image resizing:
    Images can be automatically resized on client-side with browsers supporting the required JS APIs.

  • Preview images, audio and video:
    A preview of image, audio and video files can be displayed before uploading with browsers supporting the required APIs.

  • No browser plugins (e.g. Adobe Flash) required:
    The implementation is based on open standards like HTML5 and JavaScript and requires no additional browser plugins.

  • Graceful fallback for legacy browsers:
    Uploads files via XMLHttpRequests if supported and uses iframes as fallback for legacy browsers.

  • HTML file upload form fallback:
    Allows progressive enhancement by using a standard HTML file upload form as widget element.

  • Cross-site file uploads:
    Supports uploading files to a different domain with cross-site XMLHttpRequests or iframe redirects.

  • Multiple plugin instances:
    Allows to use multiple plugin instances on the same webpage.

  • Customizable and extensible:
    Provides an API to set individual options and define callBack methods for various upload events.

  • Multipart and file contents stream uploads:
    Files can be uploaded as standard "multipart/form-data" or file contents stream (HTTP PUT file upload).

  • Compatible with any server-side application platform:
    Works with any server-side platform (PHP, Python, Ruby on Rails, Java, Node.js, Go etc.) that supports standard HTML form file uploads.

Useful links

1310 questions
-1
votes
1 answer

Get uploaded file's full client path webservice c#

Is there any api or tools to get client full path of uploaded files in asp.net? I am using jquery and c# webservice to upload files. Thank You in advance.
Keshab
  • 226
  • 2
  • 3
  • 14
-1
votes
2 answers

ActiveAdmin js response

Where do I create view for JS response? Currently, I have jquery-fileupload and the simple script $ -> $('#stone_cover').fileupload({dataType: 'script'}) ,which uploads some file in form. I googled, like, 3 hours and didnt found, how to define…
-1
votes
1 answer

cross domain file upload using jquery file upload

I am using jQuery file upload by Blueimp, and I need to do cross domain file upload(from localhost:8008 to localhost:8000) But in the initial stage I didn't get the response even, and I got this error: XMLHttpRequest cannot load. No…
-1
votes
1 answer

jQuery File Upload - upload file on form submit

I have a form with Jquery File Upload. The form is:
user1049961
  • 2,656
  • 9
  • 37
  • 69
-1
votes
1 answer

How to preserve canvas preview after upload? jQuery File Upload

I was wondering if someone knows how to preserve canvas preview images (generated by the script on file selection) after the files has been uploaded (clicked start or selected if auto upload is enabled). Thanks
-1
votes
2 answers

Issue with using Jquery File Upload on MVC 4. Multiple calls to Action?

I am trying to use jquery-file-upload on my MVC 4 application to upload multiple images to server. I have followed this post to implement image upload. Here is my view : @{ ViewBag.Title = "Index"; }