Hallo,
eine Frage zur Infobox habe ich noch:
Wie kann ich den Text, welcher in der Box angezeigt wird, formatieren.
(Z.B. Rote Überschrift Fett, der Rest schwarz, normal)
Danke Selter
<script type="text/javascript">
function setText(text){
document.getElementById("infobox").innerHTML=text;
}
</script>
<input type="button" value="Button 1" onMouseover="javascript:setText('Das ist Button 1')" />
<input type="button" value="Button 2" onMouseover="javascript:setText('Das ist Button 2')" />
<div id="infobox" width="100" height="100"></div>