Mmmm, I thought I'd tried all combinations along those lines.
For the avoidance of doubt, if my (let's say 2) frames are:
Code:
<iframe id="frame_1" name="frame_1" src="http://mydomain.com/poster_1.html" frameborder="0" width="286" height="388" scrolling="no" allowtransparency="true"></iframe>
and
Code:
<iframe id="frame_2" name="frame_2" src="http://mydomain.com/poster_2.html" frameborder="0" width="400" height="100" scrolling="no" allowtransparency="true"></iframe>
and the new pages I want to load into my two frames upon clicking the link 'Link' are:
Code:
http://mydomain.com/new_page_1.html
and
Code:
http://mydomain.com/new_page_2.html
what should replace (*) in my snippet below:
Code:
<div style="width:270px; font-family: Arial; font-size: 12px; color:#000000;"><style type="text/css">
a:link {color: #4c4c4c; text-decoration: none;margin-left: 50px}
a:visited {color: #4c4c4c; text-decoration: none;}
a:hover {color: #0080ff; text-decoration: none;}
</style>
<a href="new_page_1.html" target="frame_1" onclick="(*).href='new_page_2.html'; return true;">Link</a>
</div>
Thank you very much for your assistance.
Bookmarks