JSFiddle - React, Tailwind, and code Playground

by Wayne Humphrey

HTML

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<div id="Message"></div>

JavaScript

function GetMessages()
{

$.getJSON("http://query.yahooapis.com/v1/public/yql",
  {
    q:      "select * from json where url=\"http://pool.burstcoin.ro/pending2.json\"",
    format: "json"
  },
  function (data) {
    if (data.query.results) {
    	alert(data.query.results["pendingPaymentList"]["_00079785104091711"]);
    } else {
      alert('bad');
    }
  }
);
}

GetMessages();