Hallo, ich habe folgendes Problem. ich habe eine Tabelle, indem ein <p id="info">-Tag steht. dieses soll dynamisch mit informationen gefüllt werden wenn ich per onmouseover drüber gehe. ein Link sieht zum Beispiel so aus....
<a href="links.html" name="links" onmouseover="show_Info('Z');" onmouseout="show_Info(' ');">Privater Bereich</a>
mit text gefüllt verhällt sich alles normal. Gehe ich nun dur übergebe eines "Z" in die IF-Schleife, bekomme ich das Bild nicht angezeigt. Pfad und Rechtsschreibung vom bild stimmt!!!!Was kann das sein?!?!?
<script type="text/Javascript">
<!--
function show_Info(text)
{
if (text == "Z")
{
text = "<img src='Image\bild.jpg'>";
}
document.all["info"].innerHTML = text;
//document.title = text;
}
//-->
</script>
Danke im voraus....
Uwe