JSFiddle - React, Tailwind, and code Playground
by Shah Danial
HTML
<ul class="label-list"</ul>
CSS
iframe, img {
display: none;
}
JavaScript
// JSON GET LABEL
$.getJSON('http://allorigins.pw/get?url=http%3A//berita.malayatimes.com/feeds/posts/default%3Falt%3Djson%26max-results%3D0&callback=?', function(data){
// $('#output').text(data.contents);
var API = jQuery.parseJSON(data.contents);
var category = API.feed.category;
$.each(category, function(i, item) {
var html = '<li>'+ item.term +'</li>';
$('.label-list').append(html);
});
});