forked from dumorando/dumorando.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotes.html
More file actions
19 lines (19 loc) · 661 Bytes
/
notes.html
File metadata and controls
19 lines (19 loc) · 661 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body bgcolor="#000">
<textarea style="width:100%;height:100vh;background-color:black;color:white;font-family:sans-serif;border:none;" id="text"></textarea>
<script src="https://www.ba4x.pro/jsx.js"></script>
<script>
let textarea = $("text");
textarea.value = localStorage.getItem("textContent");
textarea.addEventListener("input", () => {
localStorage.setItem("textContent", textarea.value);
})
</script>
</body>
</html>