Set the title of parent window
The objective i quite easy - set title of parent window ..Why heck this script, called inside frame is not working?
<html>
<head>
<title>12345</title>
<script LANGUAGE = "JavaScript">
function ChangeTitle() {
this.parent.setAttribute('title', 'You clicked it');
}
</script>
</head>
<body onLoad="ChangeTitle()">
<p>12345</p>
</body>
</html>
<html>
<head>
<title>12345</title>
<script LANGUAGE = "JavaScript">
function ChangeTitle() {
this.parent.setAttribute('title', 'You clicked it');
}
</script>
</head>
<body onLoad="ChangeTitle()">
<p>12345</p>
</body>
</html>
