5

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?

Laurie Young
  • 136,234
  • 13
  • 47
  • 54

2 Answers2

17

Try using this instead:

document.title = "MyTitle";
Vhaerun
  • 12,806
  • 16
  • 39
  • 38
2

Try setting document.title to the new value

Paul Dixon
  • 295,876
  • 54
  • 310
  • 348