JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://raw.github.com/padolsey/jQuery-Plugins/master/cross-domain-ajax/jquery.xdomainajax.js"></script>
<button>Get JSON data</button>
<div></div>

JavaScript

$("button").click(function() {
    jQuery.ajax({
        url: "http://50.116.19.49/rest/user.json",
        type: 'GET',
        success: function(result) {
            $("div").text(result.responseText);
        }
    });
});