up vote 1 down vote favorite
share [g+] share [fb]

Whenever I load a blog post onto the page with Ajax, I set the page <title> to "My Blog - BLOGPOST_TITLE".

Of course "My Blog - " appears in my application layout as well.

The question is, how do I tell my Javascript about the string "My Blog - " without duplicating it in my code?

link|improve this question

67% accept rate
feedback

3 Answers

up vote 6 down vote accepted

Before Ajax is sent to server store document.title value ("My Blog") to some variable. Then when response arrives set document.title to document.title + ' - ' + BLOGPOST_TITLE

so you have in HTML:

... < title>My Blog< /title> ...

and in JS:

var TITLE = document.title;

function getBlogSpotEntry() {
   Ajax.Request(url, {
     onSuccess: function(response) {
       var entryTitle = getTitle(response.responseText);

       document.title = TITLE + " - " + entryTitle;
     }
   })
}
link|improve this answer
This won't work -- the title of my blog is never "My Blog". I'm always showing a post, so it's always "My Blog - BLOGPOST_TITLE". I could split on the " - " or something, but that's a hack (what if " - " changes). – Horace Loeb Jun 2 '09 at 15:13
Are you dealing with one particular blog or many different? In the first case it is possible to send one extra ajax request to blog endpoint (not to particular blog entry but to the blog root) - then returned title will be only 'My Blog'. – Svitlana Maksymchuk Jun 2 '09 at 16:12
Yeah, I could do another AJAX call, though this seems wasteful since I'll actually know the prefix at the time of the initial page load. – Horace Loeb Jun 3 '09 at 15:31
feedback

I would go this way (dirty, but works well):

document.myTitlePrefix = 'My Blog - '

and then update title as

document.title = document.myTitlePrefix + blogPostTitle
link|improve this answer
feedback

I am not an Javascript guru but i do know you can append or prepend information rather than overwrite so if you set your page title My Blog - you can then just append or prepend as your requirements suit you.

link|improve this answer
that does appear to be what the previous post suggests though so i dont see why it wont work for you, they are taking your title tag which most people like to have their domain name at the end of and appending the information from the blog title. – chris Oct 25 '11 at 15:35
feedback

Your Answer

 
or
required, but never shown

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