Skip to content

Instantly share code, notes, and snippets.

@jongalloway
Created August 22, 2013 21:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jongalloway/0177c5a11dbf9c547676 to your computer and use it in GitHub Desktop.
Save jongalloway/0177c5a11dbf9c547676 to your computer and use it in GitHub Desktop.
Adds play indicator (▶) to page title when any audio elements are playing.
$('audio').on("play pause ended", function(){
document.title = document.title.replace("\u25B6","")
$("audio").each(function(index) {
if(!this.paused) {
document.title = "\u25B6 " + document.title.replace("\u25B6 ","")
return false;
}
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment