ich will folgende funktion, die mit dem IE 6.0 ohne probleme funktioniert auch für andere Browser wie netscape,...
<script language="JavaScript">
function changebg(src, col)
{
src.style.background = col;
src.style.cursor = 'hand';
}
</script>
</head>
<body>
...
<td onMouseOver="changebg(this, 'CCCCCC')"> Text </td>
...
</body>
gibt es da eine möglichkeit? suche schon ziemlich lange nach so einer funktion!
<script language="JavaScript">
function changebg(src, col)
{
src.style.background = col;
src.style.cursor = 'hand';
}
</script>
</head>
<body>
...
<td onMouseOver="changebg(this, 'CCCCCC')"> Text </td>
...
</body>
gibt es da eine möglichkeit? suche schon ziemlich lange nach so einer funktion!
Kommentar