Skip to content

Instantly share code, notes, and snippets.

@jongalloway
Created August 22, 2013 21:31
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/a7910bdb0afa37e1cf83 to your computer and use it in GitHub Desktop.
Save jongalloway/a7910bdb0afa37e1cf83 to your computer and use it in GitHub Desktop.
This just doesn't work because you can't select on properties, just attributes.
$('audio').on("play pause ended", function(event){
if($('audio[paused="false"]')[0]){
document.title = document.title.replace("\u25B6","");
}else{
document.title = "\u25B6" + document.title.replace("\u25B6","");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment