Eller med frames og js:
parent.nameergivettilframe.location.href="link"
eks.:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "
http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="content-type" content="text/html; charset=iso-8859-1"><title>Ingen titel</title>
</head>
<body>
<iframe name="leftframenavn" src="test1.html"></iframe>
<iframe name="framenavn" src="test2.html"></iframe>
</body></html>
i test1.html kan så (f.eks.) være dette link:
<a href="
http://www.tv2.dk/" onclick="parent.framenavn.location.href=this.href;return false;">Test</a>
eller
<a href="
http://www.tv2.dk/" onclick="parent.framenavn.location.href="
http://www.dr.dk";return false;">Test</a>