Cómo llamar a la función javascript especificada en un elemento secundario <frame>
Estoy trabajando en un proyecto actual basado en y etiquetas.
Aquí está la estructura HTML común de la página principal (index.html):
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
</head>
<frameset rows="75px,*" frameborder="0">
<frame name="frame1" src="frames/frame1.html">
<frameset class="child_frameset">
<frame name="frame3" src="frames/frame3.html">
</frameset>
</frameset>
</html>
Aquí, cómo especifico la función de JavaScript en el marco secundario (frame3.html):
<!DOCTYPE html>
<html lang="en">
<head>
<script type="text/javascript">
function helloWorld(){
alert('hello world!');
}
</script>
</head>
<body>
<h1>I'm frame 3</h1>
</body>
</html>
Mi tarea es llamar aHola Mundo( función. ¿Cómo puedo hacer eso
¡Gracias por adelantado