So far...
$('#container').load(hash + ' #page','', function() {
$('#container').fadeIn('fast');
document.title = $('#title').load(hash + ' #title').text();
});
...doesn't work. Is there a better/correct way to do this?
FYI: -
- I've added the ID #title the tag (all pages/it's a PHP template).
- The container is .fade(ed)Out beforehand (less important)
Thanks in advance.