How can I append the title tag? Consider the example of messages page, its title is :
Messages
Now on the middle of the page I check the amount of unread messages, suppose it is ‘4’ then what I want is that the title of my page should become:
Messages (4)
Should I rewrite the tag or is there another way to append it.
To do with PHP, just echo it within your
titleelement.If you are wanting to do it with JavaScript, you can do this…
However, if you want to change it, it may better off caching the original title to make it easier to update.
If you simply want to change the title, just set the
document.titleproperty.Update
If they appear at the front, they are being prepended, not appended. The JavaScript function above will suit your requirements.