JSFiddle - React, Tailwind, and code Playground
HTML
<table class="table table-striped">
<thead>
<tr>
<th>Nama</th>
</tr>
</thead>
<tbody>
<tr id="container">
<td></td>
</tr>
</tbody>
</table>
JavaScript
$(function(){
var $content = $(".content");
$.ajax({
url : "http://api.pegipegi.com/v2/getBanner",
type : "GET",
dataType : "json",
success : function(data) {
$.each(data, function(data) {
$("#container").append("<td><img src='" + data.pc_image + "' /></td>");
$("#container").append("<td><a href='" + data.url + "'>"+ data.name +"</a></td>");
})
},
error:function(){
alert('error');
}
});
});