hi, I am very new to Json but im trying to display a json file inside an html body.
my json file looks something like this
{ items: [
{
"thumb":"http://link/link.jpg",
"title":"title of the link",
"link":"http://link.html",
"popup":"false"
},
{
"thumb":"http://link/link2.jpg",
"title":"title of the link2",
"link":"http://link2.html",
"popup":"false"
},
{
"thumb":"http://link/link3.jpg",
"title":"title of the link3",
"link":"http://link3.html",
"popup":"false"
}
]}
and i want have this to be displayed inside my html body document...any suggestions?ideas?
Thank you