Target i iframe.
är så att jag hållt på fixa lite med en sida. är så att jag har en iframe i en iframe och har en knapp i ena iframen och nu vill jag att när man trycker på den så ska man komma till en ny sida. men just nu visas det bara i den lilla iframen här kommer allt jag skrivit.
index.htm
---------------------------------------
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body bgcolor="black">
<table width="100%" height="100%" border="0">
<tr>
<td align="center" valign="middle">
<iframe src="frame1.html" name="iframe" width=800 height=600 frameborder="0" SCROLLING=NO>
</iframe>
</td>
</tr>
</table>
</BODY>
</html>
---------------------------------------------
frame1.html
---------------------------------------------
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
body
{
background-image:url('index.jpg');
background-repeat:no-repeat;
background-attachment:fixed;
background-position:center;
}
</style>
</head>
<body bgcolor="black">
<iframe src="frame2.html" name="iframe2" width="110" height="80" frameborder="0" SCROLLING=NO
style="position:absolute; left:358px; top:442px; height: 53px;"></iframe>
</body>
</html>
---------------------------------------------
frame2.html
---------------------------------------------
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body bgcolor="#000000">
<a href="http://www.google.se"><img src="Forum.jpg" border="0" target="iframe"></a>
</body>
</html>
------------------------------------------