Simple JSON Viewer Plugin Example

A simple and fast JSON viewer plugin that can present complex JSON data as a nested, collapsible, human-readable tree structure.

Basic

Input

var o = { val1: "bob", val2: false, nestedObj: { val3: "ug" }};
$("#simpleUseCase").empty().simpleJson({ jsonObject: o });
Output

Playground