M
matibaski
Guest
Moin!
Habe Probleme mit dem Validator.
Ich habe bei einer Tabelle einen RollOver JS Code.
Nun erhält jedes tr eine id und ein onmouseover und onmouseout.
Doch der Validator erkennt die nicht.
http://validator.w3.org/check?uri=http://matibaski.paradoxe.de/MyB/index.php
Codeausschnitte:
Kann mir da jemand helfen?
Er gibt mir an, die Attributen von OnMouseOver und OnMouseOut existieren nicht. Und er gibt bei der ID einen Fehler heraus, da sie nicht bestimmt sind, sagt er. Doch mti JS habe ich (x) angegeben.
MfG, matibaski
Habe Probleme mit dem Validator.
Ich habe bei einer Tabelle einen RollOver JS Code.
Nun erhält jedes tr eine id und ein onmouseover und onmouseout.
Doch der Validator erkennt die nicht.
http://validator.w3.org/check?uri=http://matibaski.paradoxe.de/MyB/index.php
Codeausschnitte:
HTML:
<script type="text/javascript">
function ein(x) {
document.getElementById(x).style.backgroundColor="#8a6a6d";
}
function aus(x) {
document.getElementById(x).style.backgroundColor="transparent";
}
</script>
<!--Die Tabelle-->
<table cellspacing="0" style="margin:5px;">
<tr id="1" onMouseOver="ein('1');" onMouseOut="aus('1');">
<td style="padding:5px; width: 199px; border:1px solid #000000; border-bottom:none;"><a href="index.php?site=home" class="menu">Home</a></td>
</tr>
<tr id="2" onMouseOver="ein('2');" onMouseOut="aus('2');">
<td style="padding:5px; width: 199px; border:1px solid #000000; border-bottom:none;"><a href="index.php?site=news" class="menu">News</a></td>
</tr>
<tr id="3" onMouseOver="ein('3');" onMouseOut="aus('3');">
<td style="padding:5px; width: 199px; border:1px solid #000000; border-bottom:none;"><a href="index.php?site=scripte" class="menu">Scripte</a></td>
</tr>
<tr id="4" onMouseOver="ein('4');" onMouseOut="aus('4');">
<td style="padding:5px; width: 199px; border:1px solid #000000; border-bottom:none;"><a href="index.php?site=tutorials" class="menu">Tutorials</a></td>
</tr>
<tr id="5" onMouseOver="ein('5');" onMouseOut="aus('5');">
<td style="padding:5px; width: 199px; border:1px solid #000000; border-bottom:none;"><a href="index.php?site=downloads" class="menu">Downloads</a></td>
</tr>
<tr id="6" onMouseOver="ein('6');" onMouseOut="aus('6');">
<td style="padding:5px; width: 199px; border:1px solid #000000; border-bottom:none;"><a href="index.php?site=forum" class="menu">Forum</a></td>
</tr>
<tr id="7" onMouseOver="ein('7');" onMouseOut="aus('7');">
<td style="padding:5px; width: 199px; border:1px solid #000000; border-bottom:none;"><a href="index.php?site=gbook" class="menu">Gästebuch</a></td>
</tr>
<tr id="8" onMouseOver="ein('8');" onMouseOut="aus('8');">
<td style="padding:5px; width: 199px; border:1px solid #000000;"><a href="index.php?site=community" class="menu">Community</a></td>
</tr>
</table>
Kann mir da jemand helfen?
Er gibt mir an, die Attributen von OnMouseOver und OnMouseOut existieren nicht. Und er gibt bei der ID einen Fehler heraus, da sie nicht bestimmt sind, sagt er. Doch mti JS habe ich (x) angegeben.
MfG, matibaski