-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtry.html
More file actions
38 lines (27 loc) · 739 Bytes
/
try.html
File metadata and controls
38 lines (27 loc) · 739 Bytes
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
<!DOCTYPE html>
<html>
<body>
<div id="accordion2" class="ui container" >
<select name = "a" id="gender-select" class="ui fluid multiple selection dropdown">
<option value="a">a</option>
<option value="b">b</option>
<option value="c">c</option>
<option value="d">d</option>
</select>
</div>
</body>
</html>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="parse.js"></script>
<link rel="stylesheet" href="semantic/semantic.min.css"/>
<script src="semantic/semantic.min.js"></script>
<script>
$('.accordion1')
.accordion({
selector: {
trigger: '.title .icon'
}
})
;
$('#gender-select').dropdown();
</script>