Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS AJAX and WordPress: How to change Page title Re: AJAX and WordPress: How to change Page title

#106814
davemcmillan
Member

K so if you use –

document.title = pageTitle

instead of –


if (!(jQuery.browser.msie)) {
jQuery('title').html(pageTitle);
}

it works in IE too.

Cheers!