why is it giving error in ie, when i try to change the title.
$('title').text('new title');
or
$('title').html('new title');
works fine in other browsers.
btw i just want to mention, when i try to get the value of title using following code, it works fine.
alert($('title'));
anyone has any idea on why its doing this? its soo annoying to fix bugs for ie.
You should set the
document.titleproperty to an ordinary string.