I am doing this faq section by getting content from json files, which I am able to achieve. But my confusion is how to integrate a "Category" heading for the faq sections ? please share some idea on how to achieve it.
// Script
$.getJSON("faqs.json",function(data){
$.each(data.posts, function(i,data){
var faqs =
"<dt>"+data.title+"</dt><dd>"+data.answer+"</dd>";
$(faqs).appendTo("#faq");
});
});
// JSON format is
{"posts": [
{ "title":"Question 1?", "answer":"faq answer 1" },
{ "title":"Question 2?", "answer":"faq answer 2" },
]}
// Current HTML Output
<dl id="faq">
<dt>Question 1?</dt><dd>faq answer 1</dd>
<dt>Question 2?</dt><dd>faq answer 2</dd>
</dl>
// Expected HTML out should be
<dl id="faq">
<strong>Category 1</strong>
<dt>Question 1?</dt><dd>faq answer 1</dd>
<dt>Question 2?</dt><dd>faq answer 2</dd>
<strong>Category 2</strong>
<dt>Question 1?</dt><dd>faq answer 1</dd>
<dt>Question 2?</dt><dd>faq answer 2</dd>
</dl>
How do i integrate the "Category" section in JSON file, if so how do i parse into the HTML. Thanks in advance