Martin Nadoll wrote:
is it possible to change the bg-Image of a <td>-tag onMouseOver?
You mean the background image of a HTML "td" element.
maybe with javaScript or with css?
Yes, it is. That's a FAQ, please search before you post.
HTML + J(ava)Script/ECMAScript:
<td
style="background-image:url(...)"
onmouseover="if (typeof this.style != "undefined"
&& typeof this.style.backgroundImage != "undefined")
{
this.style.backgroundImage = 'url(...)';
}">
<OT>
CSS:
td:hover {
background-image:url(...);
}
</OT>
HTH
PointedEars
P.S.: de.comp.lang.javascript exists.