PDA

View Full Version : Frames


winlineau
07-16-2002, 09:24 AM
I need a script. PLS make it simple, I am ONLY 11!!

1) I have two frames on my page. The first named 'vtop' and the
secound called 'vbottom'. What i want, is a javascript to make
the 'top' frame write what i have in the variable
named 'software' in the 'bottom' frame

<script>
document.write("?? Did you get that ??")
</script>
;)


Thank You in advance,
Tim Groeneveld,
:thumbsup:

glenngv
07-16-2002, 09:32 AM
document.write(top.frames["vbottom"].software)

of course, the page on the bottom must be completely loaded first before the command is executed on vtop frame.