Sign in
mojo
/
mojo-tools
/
06caa3d9c9b81719657480a481a325a0c651bd83
/
.
/
sky
/
engine
/
web
/
tests
/
data
/
select_range_input.html
blob: 41c107dd417145c01d08328ae33597068faa3072 [
file
] [
log
] [
blame
]
<!DOCTYPE html>
<html>
<body>
<input
id
=
'target'
value
=
"simple text"
>
<script>
var
input
=
document
.
getElementById
(
'target'
);
input
.
focus
();
input
.
setSelectionRange
(
0
,
input
.
value
.
length
);
</script>
</body>
</html>