Done entirely with javascript this is illegal across domains. However, due to a quirk in both IE6 and FF1.5.0.1 (the two most popular browsers) and perhaps others (not Opera8.51) this works:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
#hide {
visibility:hidden;
}
</style>
</head>
<body>
<a href="http://www.glguitars.com/featured%20artists/inxs/inxs.asp" target="main" onmousedown="document.getElementById('hide').style.visibility='visible'">link</a><br>
<iframe id="hide" name="gl" src="http://www.glguitars.com/frameset.htm" width="400" height="300" scrolling="auto" frameborder="0"></iframe>
</body>
</html>
Bookmarks