<html><head><title>test</title>
<script type="text/JavaScript">
function eingabe()
{
var text = document.form.physical.value;
document.write(text);
}
</script>
</head><body>
<form name="form">einmal physical:<br>
<textarea name="physical" cols="30" rows="3" wrap="physical">
</textarea></p>
<input type="button" value="Meldung" onClick="eingabe()">
</form>
</body></html>
Mit Alert stimmt der Zeilenumbruch, den ich gemacht habe, mit document.write ist wieder keiner da ...
:(
Herby