Coder Social home page Coder Social logo

jquery-html5-uploader's Introduction

No Maintenance Intended

#jQuery HTML5 Uploader

jQuery HTML5 Uploader is a lightweight jQuery plugin that lets you to quickly add an upload system a-la-Gmail into your web app.

You only need to create a dropbox element (i.e. a div) and jQuery HTML5 Uploader will do the rest. Then you can drag & drop one or more files on the element and the files will be uploaded.

It also works with the multiple input file element.

The upload function is divided into two asynchronous operations: client side, the file is loaded in the browser memory with a FileReader object. Useful if you want, for example, to show the image preview while uploading a picture. The server side operation consists in sending the binary file string to the postUrl (see settings).

It has been tested and works on Firefox and Chrome.

#Usage

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.html5uploader.min.js"></script>
<script type="text/javascript">
$(function() {
	$("#dropbox, #multiple").html5Uploader({
		name: "foo",
		postUrl: "bar.aspx"	
	});
});
</script>
<div id="dropbox"></div>
<input id="multiple" type="file" multiple>

#Settings

  • name: upload field identifier.
  • postUrl: the url to post the file data.
  • onClientAbort: Called when the read operation is aborted.
  • onClientError: Called when an error occurs.
  • onClientLoad: Called when the read operation is successfully completed.
  • onClientLoadEnd: Called when the read is completed, whether successful or not. This is called after either onload or onerror.
  • onClientLoadStart: Called when reading the data is about to begin.
  • onClientProgress: Called periodically while the data is being read.
  • onServerAbort: Called when the post operation is aborted.
  • onServerError: Called when an error occurs.
  • onServerLoad: Called when the post operation is successfully completed.
  • onServerLoadStart: Called when posting the data is about to begin.
  • onServerProgress: Called periodically while the data is being posted.
  • onServerReadyStateChange: A JavaScript function object that is called whenever the readyState attribute changes. The callback is called from the user interface thread.
  • onSuccess: Called when the post operation is successfully completed, the ReadyState is 4 and the HttpStatus is 200. Useful to get back informations from the server.

jquery-html5-uploader's People

Contributors

michelebertoli avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

jquery-html5-uploader's Issues

php or ASPX

I have the jQuery plugin working but what does the server request look like

LICENSE file

Hello! Couldn't you add LICENSE file to avoid ambiguity in order to people could use this prog? Thanks.

jQuery parents

Hello,

How can I get parent/closest or this element from method onSuccess?

Thank you!

How can i debug the html5Uploader ?

I want to debug the information .... also, how can i retrieve information to use in other parts of form ?

    onSuccess : function(){
      console.log(html5Uploader); ???????
      $('#ven_pendencias_arquivos_id').val(ret.last_id); ????????
    }

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.