-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (30 loc) · 1 KB
/
index.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
<html>
<head>
<link rel="stylesheet" href="index.css" type="text/css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
</head>
<body>
<div>
<div>
<span>Select from these</span>
<br/>
<button id="allow_btn">Allow</button> <button id="disallow_btn">Disallow</button>
<ul class="selectable">
<li><input type="checkbox">One</input></li>
<li><input type="checkbox">Two</input></li>
<li><input type="checkbox">Three</input></li>
</ul>
</div>
<div>
See selected ones here
<ul class="allowed">
</ul>
</div>
<div>
<ul class="dissallowed">
</ul>
</div>
</div>
<script type="application/javascript" src="index.js"></script>
</body>
</html>