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.

This question already has an answer here:

When receiving a notification in facebook the document title will be updated automatically

(1) Facebook

How to do this with javascript?

UPDATE: I want to know how to insert the (N) and remove it when a users clicks a specified div.

share|improve this question
Updated my question. – Chris Feb 21 at 22:02

marked as duplicate by Juan Mendes, Donal Fellows, CBroe, John Kraft, 卵が好き Feb 21 at 21:09

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

There is an easy way to update the document title:

document.title = 'My new title';

Here is a code snippet which will update the title when a new notification is available and update it again (remove the number of new notifications) when the user clicks the #foo div.

var title = document.title;
var notifications = 0;
jQuery.post(url, data, function(response) {


    // this regex will test if the document title already has a notification count in it, e.g. (1) My Document
    if (/\([\d]+\)/.test(title)) {
        // we will split the title after the first bracket
        title = title.split(') ');
        // get the first part of the splitted string and save it - this will be the count of the unseen notifications in our document string
        notifications = title[0].substring(1);

        // only proceed when the notification count is difference to our ajax request
        if (notifications == response)
            return;
        // else update the title with the new notification count
        else
            document.title = '(' + sp_response + ') ' + title[1];   
    }   
    // when the current document title does not contain any notification count, just update it
    else {
        document.title = '(' + sp_response + ') ' + title;
    }

});

jQuery('#foo').click(function(event){
    var title = document.title;
    if (/\([\d]+\)/.test(title)) {
        title = title.split(') ');
        document.title = title[1];  
    }
});
share|improve this answer

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