Giter VIP home page Giter VIP logo

jquery.uploadpreviewer.js's Introduction

jquery.uploadPreviewer.js

jQuery.uploadPreviewer.js is a jQuery plugin that turns a file input into a file upload previewer.

Check the demo page here.

Basic Usage

Initialization

  <input type='file' />
  var myFileUploader = $('input[type=file]').uploadPreviewer(options, callback);

Submitting Files

Submitting the files with optional callbacks

  var successCallback = function(data, status, jqXHR) { ... };
  var errorCallback = function(jqXHR, status, error) { ... };
  myFileUploader.submit(successCallback, errorCallback);

Listening to file submit complete event

  $(document).on('file-preview:submit:complete', function(e) {
    if (e.status == 'success') {
     // The event object has data, status and jqXHR
    } else if (e.status == 'error') {
      // The event object has error, status and jqXHR
    } else if (e.status == 'no-files') {
    }
  });

Options

Key Description Optional
preview_table The table that will contain the file previews. e.g. "#pictures-table" Yes
preview_row_template A function that will return a template Yes
url URL where the post request is made to No

NOTE: It is not necessary to pass the url on initialize. It can be set before submit by calling the url function with the url as the argument.

Preview Table Row Template

A default row template is provided if you don't provide one. Otherwise, the variables provided to the template include are

  • src (image source)
  • name (filename)
  • size (filesize)
  • placeholderCssClass (it should be attached to the image, which will provide a placeholder based on the file type if the file is not an image).

Credits

Jiangping Hsu for supplying the file icons

jquery.uploadpreviewer.js's People

Contributors

d0minicw0ng avatar jasonm23 avatar neo-airdrilling avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.