I want to change the title of page dynamically. I have lots of AJAX request going on in my page. On each type of response I want to notify this using the title.
AJAX
In pure JavaScript:
document.title = "Insert title here";
the document should be fully loaded before you change it.
Reference: Document.Title at Mozilla Developer Central