I have the title of my webpage set to be the current song playing in an audio player.
Most of the time the song name and artist are much longer than the maximum characters the tab can display.
I am currently displaying the title with:
document.title = (data["track_name"] + " - " + data["artist_name"]);
How do I get the title to scroll to show the whole song name and artist?