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
Why jQuery for such minor task? Use vanilla javascript:
document.title = "My new title";
More Info:
If you still want to go with jQuery, you simply do:
$("title").html("My new title");