JSFiddle - React, Tailwind, and code Playground
by Kelly Hawker
HTML
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<ul id="example">
</ul>
JavaScript
$(document).ready(function() {
$.getJSON('https://zauaedudamedia.blob.core.windows.net/prd/nz_usefullinks.json', function(data) {
var output = '';
$.each(data.data, function(key, value) {
output += '<li>' + value.category + '</li>';
});
$('#example').html(output); // <ul id="example"></ul>
});
});