Hi.
Ich habe etwas entwickelt.
Hier soll im Text einfach nur im Text durch Zufall etwas stehen.
Es klappt aber nicht. Was ist also falsch?
<html>
<head>
<script type="text/javascript">
<!--
wert = new Array(5);
eins = Math.round(Math.random()*5);
wert[0] = "a";
wert[1] = "b";
wert[2] = "c";
wert[3] = "d";
wert[4] = "e";
//-->
</script>
</head>
<body>
<script type="text/javascript">
<!--
document.write = smiley[eins]
//-->
</script>
</body>
</html>
Vielen Dank H²O