fish-guts
Erfahrenes Mitglied
Moin
Ich würde gerne folgendes realisieren:
HTML:
Funktioniert im IE Tadellos, im FF aber nicht. Wieso?
Ich habs genau so gemacht, wies in Selfhtml beschrieben wird.
Gruss
FG
Ich würde gerne folgendes realisieren:
HTML:
Code:
<table>
<tr>
<td width="1%">Link-Stil</td>
<td width="29%"><?php echo("<input type=\"text\" name=\"ls\" size=\"20\" value=\"$link[style]\">"); ?></td>
<td width="25%"><?php echo("<table id=\"link_style\" style=\"border:solid thin; text-decoration:$link[style]; width:100%; color:$link[font]; background-color:$main[main]; font-family:$link[font];\">"); ?><tr><td>Dies ist ein Beispiel</td></tr></table></td>
<td width="32%"><input type="button" onClick="updateLinkStyle('main','link_style',main.ls.value)" value="Update"></td>
</tr>
</table>
JavaScript:
function updateLinkStyle(x,y,z)
{
document.getElementById(y).style.textDecoration=z;
}
Funktioniert im IE Tadellos, im FF aber nicht. Wieso?
Ich habs genau so gemacht, wies in Selfhtml beschrieben wird.
Gruss
FG