JSFiddle - React, Tailwind, and code Playground

by Andrew Pougher

JavaScript

$.ajax({
      url: "http://pougher.tumblr.com/api/read/json",
      dataType: 'jsonp',
      success: function(results) {
        $("body").append($("<pre/>").text(JSON.stringify(results, null, "    ")));
      }
    });