.oO]Ðjh0mb[Oo.
New member
yalla, ich such en java-script das wenn mousover sich das hintergrundbild sich wechselt... 
hat das einer der weiß einer wo ich da genau finde?
hat das einer der weiß einer wo ich da genau finde?
Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature currently requires accessing the site using the built-in Safari browser.
<HTML>
<HEAD>
<style type="text/css">
<!--
#tede { background-image:url(bora.jpg); }
#teden { background-image:url(bora2.jpg); }
//-->
</style>
</HEAD>
<BODY>
<table border="2">
<tr>
<td id="tede" width="300" height="200" onmouseover="tede.id='teden';" onmouseout="teden.id='tede';" align="middle">
<b><font style="font-size:50px;color:blue;" >VW</font></b>
</td></tr></table>
</BODY>
</HTML>
<SCRIPT language=javascript>
<!--
// cell functions
function mOver(cell)
{
if (!cell.contains(event.fromElement))
{
cell.style.cursor = 'default';
cell.background = 'images/image1;
}
}
function mOut(cell)
{
if (!cell.contains(event.toElement))
{
cell.style.cursor = 'default';
cell.background = 'imagez/image2;
}
}
//-->
</SCRIPT>
onmouseover=mOver(this); onmouseout=mOut(this);