I need to create an internal link to an anchor in an Iframe. So in the iframe named "frm" I will have an anchor named "IfrLnk" In need to create a link to that anchor from the containing page.
iframe test_frame.htm
I'm having a brain fart with this one can anyone help? It will be much appreciated.
Glen
Code:
<html><head><title>link test</title>
</head><body>
<a href =#frm[COLOR=red]???[/color]>Link to place in iframe</a>
<iframe name = "frm' src = "test_frame.htm">Old browser stuff</iframe>
</body>
</html>
Code:
<html><head><title>test frame</title>
</head><body>blah blah
<a name = "IfrLnk">
</body></html>
Glen