Jquery Filepond

🔌 A handy FilePond wrapper for jQuery
Alternatives To Jquery Filepond
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Jquery File Upload31,0275046812 days ago136September 25, 202152mitPHP
File Upload widget with multiple file selection, drag&drop support, progress bar, validation and preview images, audio and video for jQuery. Supports cross-domain, chunked and resumable file uploads. Works with any server-side platform (Google App Engine, PHP, Python, Ruby on Rails, Java, etc.) that supports standard HTML form file uploads.
Bootstrap Fileinput5,2581,182353 months ago89August 17, 202214otherJavaScript
An enhanced HTML 5 file input for Bootstrap 5.x/4.x./3.x with file preview, multiple selection, and more features.
Elfinder4,433494764 days ago69March 14, 202280otherJavaScript
📁 Open-source file manager for web, written in JavaScript using jQuery and jQuery UI
Jquery Filedrop977
64 years ago2August 24, 201376JavaScript
jQuery plugin - drag and drop desktop files and POST to a URL to handle files.
Uploader973713 years ago1January 16, 201845mitJavaScript
A lightweight and very configurable jQuery plugin for file uploading using ajax(a sync); includes support for queues, progress tracking and drag and drop.
Jquery Fileupload Rails6822,196445 years ago18November 15, 201810JavaScript
jQuery File Upload integrated for Rails
S3_direct_upload648
5 years ago114mitRuby
Direct Upload to Amazon S3 With CORS
Django Jquery File Upload576
3 years ago9mitHTML
A minimal django project containing a minimal app with a working jquery file upload form based on the work by Sebastian Tschan: http://aquantum-demo.appspot.com/file-upload
Ghost Markdown Editor475
7 years ago7mitJavaScript
Just a responsive jquery markdown editor with instant preview.
Jquery Iframe Transport3593036 years ago1August 12, 201522mitJavaScript
jQuery Ajax transport plugin that supports file uploads through a hidden iframe
Alternatives To Jquery Filepond
Select To Compare


Alternative Project Comparisons
Readme

jQuery FilePond

jQuery FilePond is a handy jQuery adapter for FilePond, a JavaScript library that can upload anything you throw at it, optimizes images for faster uploads, and offers a great, accessible, silky smooth user experience.

License: MIT npm version

Also need Image Editing?

Pintura the modern JavaScript Image Editor is what you're looking for. Pintura supports setting crop aspect ratios, resizing, rotating, cropping, and flipping images. Above all, it integrates beautifully with FilePond.

Learn more about Pintura

Installation

Install from npm

npm install jquery-filepond --save

Or form a CDN:


<input type="file" class="my-pond" name="filepond"/>

<!-- include jQuery library -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js"></script>

<!-- include FilePond library -->
<script src="https://unpkg.com/filepond/dist/filepond.min.js"></script>

<!-- include FilePond plugins -->
<script src="https://unpkg.com/filepond-plugin-image-preview/dist/filepond-plugin-image-preview.min.js"></script>

<!-- include FilePond jQuery adapter -->
<script src="https://unpkg.com/jquery-filepond/filepond.jquery.js"></script>

<script>
  $(function(){
  
    // First register any plugins
    $.fn.filepond.registerPlugin(FilePondPluginImagePreview);

    // Turn input element into a pond
    $('.my-pond').filepond();

    // Set allowMultiple property to true
    $('.my-pond').filepond('allowMultiple', true);
  
    // Listen for addfile event
    $('.my-pond').on('FilePond:addfile', function(e) {
        console.log('file added event', e);
    });

    // Manually add a file using the addfile method
    $('.my-pond').first().filepond('addFile', 'index.html').then(function(file){
      console.log('file added', file);
    });
  
  });
</script>

Read the docs for more information

Popular Jquery Projects
Popular Upload Projects
Popular Web User Interface Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Javascript
Jquery
Upload
Adapter
Image Processing