Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
- <script>
- var xhr = new XMLHttpRequest(); //Request the data
- xhr.open('POST','../gabencoin/public/index.php?page=api&action=getpoolstatus&api_key=72f3fd60d9a536215a6f6f92938592a60f919586635d7d0dedcf6a394888c435',true);
- xhr.send();
- xhr.onreadystatechange = function() {
- if (this.readyState === 4) { //When it's ready
- var data = JSON.parse(this.responseText); //Parse the data
- document.getElementById('output').textContent = data.getpoolstatus.data.hashrate; //And here it is!
- }
- }
- </script>
- </head>
- <body>
- <p>GBN: <div id="output"></div>KH/s</p>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement