Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

jquery json to table

$.ajax({
    type: "GET",
    url: "data.json",
    dataType: 'json',
    success: function (data) {
        $('body').append(arrayToTable(data));
    }
});
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #jquery #json #table
ADD COMMENT
Topic
Name
6+8 =