in reply to Writing To Frame That Didn't Call The Script
If what you mean is that you've loaded a page into frame X, but want (as a result of loading that page) to alter content in a different frame, then you can do this with simple javascript (not sure how browser portable this is or isn't... try it yourself!):
or however you want to manipulate the innerHTML of that document.print " <script language=jscript> top.$frameName.document.innerHTML = ... </script> ";
Or, you can (more simply) just push a new page into that other frame:
That sort of thing. Good luck.print " <script language=jscript> top.$frameName.document.location = '$other_page.pl'; </script> ";
------------ :Wq Not an editor command: Wq
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Writing To Frame That Didn't Call The Script
by MrSteeple (Initiate) on Mar 18, 2004 at 06:41 UTC |