JSFiddle - React, Tailwind, and code Playground
by Felipe Douradinho
HTML
<div id="idResultado"></div>
JavaScript
var data = {
"name": "test",
"count": 5,
"frequency": "Manual Crawl",
"version": 1,
"newdata": true,
"lastrunstatus": "success",
"thisversionstatus": "success",
"thisversionrun": "Wed Jun 24 2015 16:25:51 GMT+0000 (UTC)",
"results": {
"collection1": [
{
"property1": "",
"property2": "DIA DA TERRA",
"index": 1,
"url": "http://site.com.br"
},
{
"property1": "",
"property2": "DIA DA TERRA 2",
"index": 1,
"url": "http://site.com.br"
}
]
}
}
$.each(data['results'], function(key, value)
{
$.each(data['results'][key], function(key_result, value_result)
{
$('#idResultado').append(value_result['property2'] + "<br>");
});
});