Skip to content

Instantly share code, notes, and snippets.

@letsbreelhere
Created April 7, 2012 22:59
Show Gist options
  • Save letsbreelhere/2332706 to your computer and use it in GitHub Desktop.
Save letsbreelhere/2332706 to your computer and use it in GitHub Desktop.
Set pandora title to track info
var changeTitle = function() {
var artistName = $("#trackInfo .artistSummary").text();
var trackTitle = $("#trackInfo .songTitle").text();
$("title").text(trackTitle + " by " + artistName + " - Pandora");
}
changeTitle();
setInterval(changeTitle, 5000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment