Hello, my site is a design on index.php and then a frame on it.. Now, i want to do so the titles changes When you browse to eg. Videos.php.
So how should i do this with window.parent and title?
The title needs to be changed on index.php.
So cant it be done like on videos.php:
<script>
window.parent.changeTitle("Videos - Mysite.com");
</script>
and then on index.php:
function changeTitle(msg) {
<title>(msg)</title>
}
just an thought i dont know really..