JSFiddle - React, Tailwind, and code Playground

by Shirly Manor

HTML

<button>TextRazor</button>

JavaScript

$(document).ready(function(){
    $("button").click(function(){
    $.ajax({
url: "",
type: "GET",
success:function(data) {
    alert(JSON.stringify(data));
},error: function(xhr) {
    alert("<some error>");
    console.error(xhr.responseText);
}
});
});});