JSFiddle - React, Tailwind, and code Playground

by HYEONGJINKIM

JavaScript

$.ajax({
    type: "get",
    url: "http://jsfiddle.net/echo/jsonp/",
    data: {
        text: 'some text',
        par1: 'another text'
    },
    dataType: "jsonp"
}).done(function( msg ) {
    console.log( "Data Saved: " + msg );
});