Hi,
ive got the following functions included in my page. with IE they are perfectly working. with firefox it seems like they are not there at all ...
the sourcecode of FF shows the following
anybody any idea why this is so?
thanks very much in advance.
ive got the following functions included in my page. with IE they are perfectly working. with firefox it seems like they are not there at all ...
Code:
function img_toggle(img) {
var img = document.getElementById("img" + img);
img.background = "bg/t2.gif";
img.style.cursor = "hand";
}
function img_toggleback(img) {
var img = document.getElementById("img" + img);
img.background = "bg/t1.gif";
}
Code:
<a href="index.php?id=neuen"><td height="40" class="link" align="left" background="bg/t2.gif" id="img1" onMouseOver="img_toggle('1')" > neueste Beiträge</td></a>
thanks very much in advance.
Comment