function onLoad() { // generate template for each table entry var oTableNode = document.getElementById("projectsTable"); $.getJSON("./OpenUI5RelatedProjects.json", function(oResult){ $.each(oResult, function(sIndex, oEntry){ var sRowTemplate = document.createElement("tr"); sName = "" + oEntry.name + ""; sType = "" + oEntry.type + ""; sOwner = "" + "@" + oEntry.owner + ""; sDescription = "" + oEntry.description + ""; sDocumentationLink = "" + "Documentation"; sLicense = "" + oEntry.license + ""; sRowTemplate.innerHTML = sName + sOwner + sType + sDescription + sDocumentationLink + sLicense; oTableNode.appendChild(sRowTemplate); }); }); }