I have a json array with:
[
{
"id":"1",
"0":"1",
"name":"Quique",
"1":"Quique"
},
{
"id":"2",
"0":"2",
"name":"Kety",
"1":"Kety"
}
]
So, I want to get values id and name from the json and use them to represent the json file in with HTML. A perfect result for me will be something like:
<div id="container">
<div>Quique, id 1</div>
<div>Kety, id 2</div>
</div>