|
Mit diesem JavaScript lässt sich eine ganze Textbox zum Kopieren usw. markieren.
Autor: unbekannt
in <body> einfügen
<form>
<textarea name="yourForm" rows=3 cols=40 wrap=virtual>
Ich bin ein Beispiel
</textarea>
<br>
<br>
<input type=button value="alles auswählen" onClick="javascript:this.form.yourForm.focus();this.form.yourForm.select();">
</form>
|