vote up 2 vote down star

I want to change the title showing in a page based on information I pick up from within the page (eg to show the number of inbox messages)

document.getElementsByTagName('title')[0].innerHTML="foo"; does change the title tag, but firefox does not update the displayed title (in window and tags) when this happens.

Is this possible?

flag

73% accept rate

2 Answers

vote up 7 vote down check

Try using this instead:

document.title = "MyTitle";
link|flag
vote up 2 vote down

Try setting document.title to the new value

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.