function parseCategoryResponse(request) { var data = eval('('+request.responseText+')'); var txt=""; txt += "

Category: " + data.name + "

"; txt += "

"; txt += "

Category ID: " + data.id + "

"; txt += "

Category Description: " + data.description + "

"; txt += "

Category Slug: " + data.slug + "

"; txt += "

Category Link: " + data.link + "

"; txt += "

Category Posts: " + data.count + "

"; // Count of Posts in this Category categoryPostsCount = data.count; txt += "

Parent Category ID: " + data.parent + "

"; txt += "

Parent Category Name: " + data._embedded.up[0].name + "

"; txt += "

Parent Category Slug: " + data._embedded.up[0].slug + "

"; txt += "

Parent Category Href: " + data._links.up[0].href + "

"; document.querySelector(".header-content").innerHTML = txt; }