xoguskim / jquery-json-presenter

Troubleshooting JSON made easy. Neatly present JSON on a page with easily expandable and collapsible JSON properties through the user interface as well as through configuration.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jQuery JSON Presenter Plugin - Troubleshooting JSON made easy

The jQuery JSON Presenter Plugin provides drop-in JSON presentation for any and all your JSON objects making troubleshooting and reporting much easier.

Getting Started

Downloading the latest changes

The unreleased development files can be obtained by:

  1. Downloading or forking this repository
  2. Setup the build
  3. Run grunt to create the built files in the "dist" directory

Including it on your page

Include jQuery and the plugin on a page. Then select a form to validate and call the jsonPresenter method, providing whatever JSON you want as a plugin option.

<script src="jquery.js"></script>
<script src="jquery.jsonPresenter.js"></script>
<div id="container"></div>
<script>
$("#container").jsonPresenter({
  json: {"foo":"bar"}
});
</script>

Alternatively include jQuery and the plugin via requirejs in your module.

define(["jquery", "jquery.jsonPresenter"], function( $ ) {
	$("#container")jsonPresenter({
    json: {"foo":"bar"}
  });
});

Reporting issues and contributing code

See the Contributing Guidelines for details.

License

Copyright © 2014 Steven Pease
Licensed under the MIT license.

About

Troubleshooting JSON made easy. Neatly present JSON on a page with easily expandable and collapsible JSON properties through the user interface as well as through configuration.

License:MIT License


Languages

Language:JavaScript 94.4%Language:CSS 5.6%