JSFiddle - React, Tailwind, and code Playground
by wirey00
HTML
<div></div>
JavaScript
var data = [{
"id": "299", // <-- v.id
"calendar_id": "49", // <-- v.id.calendar_id
"event_date": "2012-11-27", // <-- v.event_date
"event_start": "2012-11-27 00:39:00", // <-- v.event_start
"event_end": "2012-11-27 00:39:00", // <-- v.event_end
"title": "description goes here", // <-- v.title
"description": "", // <-- v.description
"planned": "0",
"type_class": "General",
"type_data": "{\"frequency_type\":\"1\",\"frequency_x\":null,\"type\":\"14\",\"status\":\"23\"}"
}];
var out = '';
$.each(data,function(k,v){
out += '<span>'+v.title+'</span>';
});
$('div').append(out);