mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
14 lines
304 B
HTML
14 lines
304 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<textarea id='target' rows='2' cols='3'>
|
|
simple text that should be a bit longer than that
|
|
</textarea>
|
|
<script>
|
|
var textarea = document.getElementById('target');
|
|
textarea.focus();
|
|
textarea.setSelectionRange(0, textarea.value.length);
|
|
</script>
|
|
</body>
|
|
</html>
|