Skip to content

Latest commit

 

History

History
14 lines (8 loc) · 357 Bytes

README.md

File metadata and controls

14 lines (8 loc) · 357 Bytes

JSON-list

JSON URL to HTML List

Grab data from JSON URL and list in a table.

Update URL in listify-json.js for your json URL.

Change id, title, userId with the field names from your JSON output.

row.append($("<td>" + rowData.id + "</td>"));
row.append($("<td>" + rowData.title + "</td>"));
row.append($("<td>" + rowData.userId + "</td>"));