0.0.7 • Published 9 years ago

submitter v0.0.7

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

submitter

Automatically submitting forms with AJAX

Features

  • Recover all data of inputs in form
  • Recover div content as inputs content
  • Allow submit button outside the form (add target="your-form-name" to your submit input)
  • Use img tags as inputtype="file"

Installation

Download and extract the last release from here or install with Bower

$ bower install submitter

Usage

Link submitter.js from your html file

<script src="path/to/submitter.js"></script>

or load it with browserify in your .js file

var submitter = require("path/to/submitter.js");

Then apply submitter to your form

var options = {
	init : function () {
		// do something on start request
	},
	finish : function () {
		// do something on start request
	},
	progress : function (p) {
		// do something with 'p' (percentaje, number 0-100)
	},
	fail : : function (error) {
		// do something with error after failed request
	},
	success : function (data) {
		// do something with data after successfull request
	}
}

submitter('your_form_name', options);


© 2014 jacoborus

Released under MIT License