How Can I Modify The Title Of A Site Using Javascript?
When viewing a torrent page, the title of the tab is: Bitsoup.org The Best site for your Torrent appetite :: Details for torrent 'ABC' where 'ABC' is the name of the torrent fi
Solution 1:
You could use a regular expression, perhaps:
document.title = document.title.match(/"([^"]+)"/)[1]
This regex uses grouping to matches the first thing that is between quotes, and assigns it to the title
(without the quotes).
Solution 2:
Using a substr method is by far the simplest if you know that the beginning of the title will always be identical. For example, with the title you gave:
document.title = document.title.substr(76);
If it is not a static title, then RegEx would be the next most logical route. To match the last set of quotes and ignore potential whitespace:
document.title = document.title.match(/"([^"]+)"\s*$/)[1];
Post a Comment for "How Can I Modify The Title Of A Site Using Javascript?"