Skip to content

Instantly share code, notes, and snippets.

@adispen
Last active June 30, 2016 12:25
Show Gist options
  • Save adispen/4182ed84380846dc0ae1 to your computer and use it in GitHub Desktop.
Save adispen/4182ed84380846dc0ae1 to your computer and use it in GitHub Desktop.
BTTV Theater Viewer Numbers
$("div.player-livestatus__online").text(function(){
return $(".live-count").text() + "Viewers";
})
$(".live-count").bind("DOMSubtreeModified", function(){
$("div.player-livestatus__online").text(function(){
return $(".live-count").text() + "Viewers";
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment