-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·37 lines (34 loc) · 1.08 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
35
36
37
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="js/jquery-2.1.4.min.js"></script>
<script type="text/javascript" src="js/js.js"></script>
</head>
<body>
<div id="someDiv">
<input id="one" type="text" placeholder="one" />
<input id="two" type="text" placeholder="two" />
<select id="someSelectOne">
<option value="1">1</option>
<option value="2">2</option>
</select>
<select id="someSelectTwo">
<option value="1">1</option>
<option value="2">2</option>
</select>
</div>
<br />
<div id="otherDiv">
<input id="one" type="text" placeholder="same as one" disabled />
<input id="two" type="text" placeholder="same as two" disabled />
<select id="someSelectOne" disabled>
<option value="1">1</option>
<option value="2">2</option>
</select>
<select id="someSelectTwo" disabled>
<option value="1">1</option>
<option value="2">2</option>
</select>
</div>
</body>
</html>