Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. $(document).ready(function () {
  2. $("#liveNotification").ready(function () {
  3. var channel = "DarkBoi";
  4. $.getJSON("http://api.hitbox.tv/media/live/" + channel.toLowerCase(), function (data) {
  5. var mediaIsLive = data.livestream[0].media_is_live;
  6. if (mediaIsLive == 1) {
  7. return $("#liveNotification").text("Online");
  8. }
  9. return $("#liveNotification").text("Offline");
  10. }).error(function () {
  11. $("#liveNotification").text("I'm not sure :(");
  12. });
  13.  
  14. });
  15. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement