JSFiddle - React, Tailwind, and code Playground

by hellosze

HTML

<h1>hello</h1>

<a href="http://schematic-ipsum.herokuapp.com/">http://schematic-ipsum.herokuapp.com/</a>

JavaScript

$(function(){

$.ajax({
                contentType: 'application/json',
                crossDomain: 'true',
                type: 'POST',
                dataType: 'json',
                data: { "type": "integer" },
                url: 'http://schematic-ipsum.herokuapp.com/?n=10',
                success: function(){
                    alert("hi");
                }
            });

});