JSFiddle - React, Tailwind, and code Playground
by austinpray
HTML
<button id="b">Run</button>
CSS
button {
font-size: 200%;
}
JavaScript
$('#b').on('click', function () {
$.ajax({
url: "https://api.github.com/users/austinpray"
})
.done(function( data ) {
alert(data.email);
});
});