It’s setup like this:
Parent.html
<html>
<head>
<title>Component Documentation</title>
</head>
<frame src="html\child.html" name="child">
</html>
Child.html
<select name="componentselect" size="24">
When the select box is clicked I need the Parent’s title to change. Basically, I want the browser to display the item selected in “componentselect” to appear in the title bar. Setting the document.title in the Child.html isn’t working.
try
HTML