View Full Version : page anchors..


anesthesia
07-23-2003, 02:36 PM
would targeting an anchor from a graphic on another page work if the anchor your targeting is inside an IFrame or will anchors only target if everything is all on one page? confusing i know...

christiandude03
07-23-2003, 03:21 PM
Actually, there IS a way to do this....

<iframe src="frame.html" name="theframe"></iframe>

<a href="frame.html#yeah" target="theframe">test</a>

you may change all the parts in color, as long as all the parts with the same color match.

the #yeah must match the anchor in the page specified by the red.

the part in green can be whatever you want

let me know if this makes any sense...