JSFiddle - React, Tailwind, and code Playground
HTML
<div id="result">Loading…</div>
JavaScript
window.domain='http://21.luckyminers.com';
window.api_key='8dba7050f9fea1e6a554bbcf4c3de5096795b253b45525c53562b72938771c41';
showResult=function(data)
{
document
.getElementById('result')
.innerText = data.getpoolstatus.data.networkdiff;
}
updateResult=function()
{
var s=document.createElement('script');
s.src=domain+"/index.php?page=api&callback=showResult&action=getpoolstatus&api_key="+api_key;
document.body.appendChild(s);
}
updateResult();