Last active
April 17, 2016 16:16
-
-
Save FinlayDaG33k/d5d69f9d58e07d5382c93e0b70e9b581 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function offlinenotification() { | |
var url = "https://hubble.finlaydag33k.nl/api/?authkey=<?php echo $user_authkey;?>"; | |
$.getJSON( url, { | |
format: "json" | |
}) | |
.done(function( data ) { | |
console.log(data); | |
$.each( data.servers.servers, function( i, item ) { | |
console.log(i); | |
}); | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment