24 lines
631 B
JSON
24 lines
631 B
JSON
[
|
|
{
|
|
"id": "1",
|
|
"firstName": "John",
|
|
"lastName": "Doe"
|
|
},
|
|
{
|
|
"id": "2",
|
|
"firstName": "Mary",
|
|
"lastName": "Peterson"
|
|
},
|
|
{
|
|
"id": "3",
|
|
"firstName": "George",
|
|
"lastName": "Hansen"
|
|
}
|
|
]
|
|
var mainContainer = document.getElementById("myData");
|
|
var div = document.createElement("div");
|
|
div.innerHTML = escape(data[1]["description"]["description_s"] + "<br>");
|
|
Kql = unescape(data[1]["description"]["description_s"]);
|
|
|
|
mainContainer.appendChild(div);
|
|
} |