JSFiddle - React, Tailwind, and code Playground
HTML
<form>
<input type="text" placeholder="enter text here" />
<input type="submit" value="call API" />
</form>
JavaScript
$(function() {
$('input[type=submit]').click(function(e) {
e.preventDefault();
$.getJSON('http://woof.magnify.net/api/content/find?vq=karma&per_page=5&page=1&sort=popularity&key=84LTHNZQ1364W14D&format=json&callback=?', function (data) {
$('form').append($('<div>').text(JSON.stringify(data)))
})
});
});