I have written the following to do AJAX requests in my app:
$(document).ready(function () {
$(\'ul#ui-ajax-tabs li:first\').addClass(\'selected\');
I am new to jQuery, but I will give it a try anyways:
var newTitle = $(responseHtml).filter('title').text();
And if one of the above works, the current title could be changed by
document.title = newTitle;
Again I am a jQuery and Javascript beginner and just wanted to give it a try :) So excuse me if its stupid and wont work :)