hello; I have:
frameset with
frame a
frame b
for i=0 everything works;
but after the first loop I get "object doesn't support this property or method";
I should note that if I merely put
into a non-frameset html there are no problems;
any thoughts?
thanks
Shannon Burnett
Asheville NC USA
frameset with
Code:
<frame name='a' src='a.htm'>
<frame name='b' src='b.htm'>
frame a
Code:
<script language='javascript' type='text/javascript'>
for (i=0 ; i<10 ; i++)
{ top.b.printer(i + '<br/>');
};
</script>
frame b
Code:
<script language='javascript' type='text/javascript'>
function printer(message)
{ document.writeln(message);
};
</script>
for i=0 everything works;
but after the first loop I get "object doesn't support this property or method";
I should note that if I merely put
Code:
<script language='javascript' type='text/javascript'>
for (i=0 ; i<10 ; i++)
{ document.writeln(i + '<br/>');
};
</script>
any thoughts?
thanks
Shannon Burnett
Asheville NC USA