mk-databridge
v1.0.2
Published
A jQuery plugin to read/set data to forms. Supports nested objects, boolean and array checkboxes, on fly data formatting, non-input elements.
Downloads
8
Maintainers
Readme
mk-databridge
Databridge is a serialization jQuery plugin to read data from forms, and to set data to forms. Supports nested objects, boolean and array checkboxes, on fly data formatting and conversion. Works with any elements with attributes 'name' or 'data-name', including non-input elements.
Inclusion
Include script into your page:
<script src="path/to/plugin/mk-databridge.min.js" ></script>
Basic usage
To set data call databridge with data object:
$('.form-container').databridge(dataObject);
To get data call databridge with no arguments:
var dataObject = $('.form-container').databridge();