Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a HTML <title> element which I want to dynamically change depending on other elements. I tried using document.getElementsByTagName('title').innerHTML = dynamicContent but this did not seem to work. I have seen it done before, but I can't seem to figure out exactly how to do this.

share|improve this question

3 Answers

up vote 6 down vote accepted

Do you mean the <title> element in <head> of the page?
If yes, then changing document.title should do the trick.

share|improve this answer
How would you go about changing that Tom? document.title.innerHTML("New value");? – ShoeMaker Mar 19 at 11:45
1  
document.title = "blah"; should do the trick. – Tomas Petricek Mar 21 at 16:54

getElementsByTagName() returns a NodeList, so you need to pick one element:

document.getElementsByTagName('title')[0].innerHTML = dynamicContent

There's also a shortcut to the title:

document.title = dynamicContent
share|improve this answer
getElementsByTagName() returns a NodeList, an array-like object but not an actual array. – Tim Down Nov 14 '10 at 1:51
Thanks for clarification. Edited. – AndreKR Nov 14 '10 at 1:52
+1 for actually explaining why the OP's code didn't work. – Ms2ger Nov 14 '10 at 12:05

You can manipulate

a) document.title = 'blah';

b) .textContent or .innerText depending on the browser

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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