Ich hab bereits den ganzen Tag gegoogelt aber irgendwie nix gefunden. Kann mir jemand sagen wie ich mit Javascript(?) bei Klick auf einen Href (siehe unten) das im body (css style -> backround-image) definerte Hintergrundbild austauschen (ohne den Navigationsframe auszutauschen) kann. Weiterhin sollte bei diesem Klick der Link in einem anderen Frame aufgehen (das funktioniert ja).
<html>
<head>
<style type="text/css">
<!--
a:link { color:#000000; text-decoration:none;}
a:visited { color:#000000; text-decoration:none;}
a:hover { color:#ffffff; text-decoration:none; background-color:#336699;}
a:active { color:#ffffff; background-color:#336699;}
table { background-image:url(images/header_01.jpg); background-attachment: fixed; background-repeat:no-repeat;
font-family:tahoma, verdana, arial; font-size:8pt; background-color:#ffffff;}
-->
</style>
</head>
<body marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">
<table cellpadding="0" cellspacing="0" width="700" height="140">
<tr>
<td height="80" colspan="8"> </td>
</tr>
<tr>
<td height="25" width="120"> </td>
<td><a href="content1.htm" target="content"> 01 </a></td>
<td><a href="content2.htm" target="content"> 02 </a></td>
<td><a href="content3.htm" target="content"> 03 </a></td>
<td><a href="content4.htm" target="content"> 04 </a></td>
<td><a href="content5.htm" target="content"> 05 </a></td>
<td><a href="content6.htm" target="content"> 06 </a></td>
<td><a href="content7.htm" target="content"> 04 </a></td>
<td width="100"> </td>
</tr>
<tr>
<td height="35" colspan="8"> </td>
</tr>
</table>
</body>
</html>
<html>
<head>
<style type="text/css">
<!--
a:link { color:#000000; text-decoration:none;}
a:visited { color:#000000; text-decoration:none;}
a:hover { color:#ffffff; text-decoration:none; background-color:#336699;}
a:active { color:#ffffff; background-color:#336699;}
table { background-image:url(images/header_01.jpg); background-attachment: fixed; background-repeat:no-repeat;
font-family:tahoma, verdana, arial; font-size:8pt; background-color:#ffffff;}
-->
</style>
</head>
<body marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">
<table cellpadding="0" cellspacing="0" width="700" height="140">
<tr>
<td height="80" colspan="8"> </td>
</tr>
<tr>
<td height="25" width="120"> </td>
<td><a href="content1.htm" target="content"> 01 </a></td>
<td><a href="content2.htm" target="content"> 02 </a></td>
<td><a href="content3.htm" target="content"> 03 </a></td>
<td><a href="content4.htm" target="content"> 04 </a></td>
<td><a href="content5.htm" target="content"> 05 </a></td>
<td><a href="content6.htm" target="content"> 06 </a></td>
<td><a href="content7.htm" target="content"> 04 </a></td>
<td width="100"> </td>
</tr>
<tr>
<td height="35" colspan="8"> </td>
</tr>
</table>
</body>
</html>