Ich möchte die Anzeige wie im IE6 erreichen bzw. in beiden Browsern das gleiche Ergebnis. Kann mir jemand helfen, oder den entscheidenen Hinweis geben, wie ich gleiche Ergebinise erzielen kann?
Code
<head>
<title>Explorer6 vs. Firefox</title>
<script language="JavaScript">
function mouseOver(src,clrOver) {
src.style.cursor = 'hand';
src.style.backgroundColor = clrOver;
}
function mouseOut(src,clrIn) {
src.style.cursor = 'default';
src.style.backgroundColor = clrIn;
}
function mouseClick(src) {
if(event.srcElement.tagName=='TD'){
src.children.tags('A')[0].click();
}
}
</script>
</head>
<body><B>Explorer6 vs. Firefox</B>
<table border="2" cellpadding="10">
<tr>
<td bgcolor="#E8FFE8"
onclick="mouseClick(this);"
onmouseout="mouseOut(this,'#E8FFE8');"
onmouseover="mouseOver(this,'#D4D0C8');"
bordercolorlight="#666666" bordercolordark="#E0E0E0">
<h2><a href="#top">Explorer</a>
</h2>
</td>
<td bgcolor="#FFFFE5"
onclick="mouseClick(this);"
onmouseout="mouseOut(this,'#FFFFE5');"
onmouseover="mouseOver(this,'#D4D0C8');"
bordercolorlight="#666666" bordercolordark="#E0E0E0">
<h2><a href="#top">Firefox</a> </h2>
</td>
</tr>
</table>
</body>
</html>
Alles anzeigen
[/code]