viankakrisna
1/8/2016 - 7:07 AM

This is a jQuery plugin for dumping variable to a JSON string.

This is a jQuery plugin for dumping variable to a JSON string.

(function ($) {
    $.fn.dump = function (variable) {
        this.html($('<pre></pre>')
            .text(JSON.stringify(variable, null, 4)));
        return this;
    };
})(jQuery);

//How to use:
/* 
    var test = {
        foo: bar
    }
    $('#foo').dump(test);
*/