flexijsoneditor-master

1.4.0 • Public • Published

JSON editor jQuery plugin

A JSON editor component for you web apps/pages. Blog post

Live example

INSTALLATION

Include these lines into your HTML:

    <link rel="stylesheet" href="jsoneditor.css"/>
    <script src="jquery.min.js"></script>
    <script src="jquery.jsoneditor.js"></script>

USAGE

    var myjson = { any: { json: { value: 1 } } };
    var opt = { 
        change: function(data) { /* called on every change */ },
        propertyclick: function(path) { /* called when a property is clicked with the JS path to that property */ }
    };
    /* opt.propertyElement = '<textarea>'; */ // element of the property field, <input> is default
    /* opt.valueElement = '<textarea>'; */  // element of the value field, <input> is default
    $('#mydiv').jsonEditor(myjson, opt);

Bitdeli Badge

   update:

Fix bug

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i flexijsoneditor-master

      Weekly Downloads

      1

      Version

      1.4.0

      License

      MIT

      Unpacked Size

      189 kB

      Total Files

      13

      Last publish

      Collaborators

      • robgao