Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
Wenn es geht (weiß nicht wie es sich mit readonly verhält) dann nur mit JavaScript. Frag in dem Forum noch mal nach.und wie stelle ich es ein, dass die gesamte Textarea markiert ist, wenn ich auf die Textarea klicke?
<textarea rows="9" cols="16" onclick="this.select();">Testtext</textarea>
<script type="text/javascript">
<!--
window.onload = function() {
textareas = document.getElementsByTagName("textarea");
for(i=0; textareas[i]; i++)
textareas[i].onclick = function() {this.select();};
}
-->
</script>