blob: 09e018f581905b35fcdb4ba70aade0de27785efb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<script>
document.addEventListener("DOMContentLoaded", () => {
getSelection().addRange(document.createRange());
const range = document.createRange();
range.selectNode(document.querySelector("meter"));
getSelection().addRange(range);
getSelection().modify('move', 'left', 'line');
document.querySelector("input").style.display = "none";
getSelection().modify('move', 'left', 'lineboundary');
})
</script>
</head>
<body>
<input>
<div contenteditable>
<meter>
</div>
</body>
</html>
|