Reputation: 1199
I wonder if I could change my page title of my facebookapplication. At the moment the page is entitled "CoolApplicationName on Facebook", I would like to add one word before my application name. For example "(AddedWord) CoolApplicationName on Facebook". Is it possible or page title is imposed by facebookand it can't be changed?
Upvotes: 0
Views: 46
Reputation: 29715
This is not a programming question, but more of a facebooksettings thing. These are the steps on how to update the title of your facebookapplication:
When you reload your game, the page title will be the new one that you saved.
Upvotes: 1
Reputation: 5571
Did you try this?:
var oldTitle = document.title;
document.title = "(AddedWord) " + oldTitle;
Upvotes: 1