-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsCharPick.html
45 lines (45 loc) · 1.13 KB
/
jsCharPick.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jsCharPick – Demo</title>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
<script type="text/javascript">
window.onload = function() {
initPage();
}
</script>
</head>
<body>
<div class="content">
<div id="charPopup" class="charPopup">
<div class="charPopup-content">
<div class="charPopup-body">
<span class="closePopup">×</span>
<div id="buttonContainer">
<!-- buttons will be added here -->
</div>
</div>
</div>
</div>
<p>
<label for="myInput1">Input1:</label>
<input type="text" id="myInput1" value="bababa">
<button type="button" id="charPopupButton">é</button>
</p>
<p>
<label for="myTextArea1">Textarea1:</label>
<textarea type="text" id="myTextArea1">opopop</textarea>
</p>
<p>
<label for="myInput2">Input2:</label>
<input type="text" id="myInput2" value="nununu">
</p>
<p>
<label for="myTextArea2">Textarea2:</label>
<textarea type="text" id="myTextArea2">ezezez</textarea>
</p>
</div>
</body>
</html>