-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccordionwidget.html
55 lines (47 loc) · 1.3 KB
/
accordionwidget.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
46
47
48
49
50
51
52
53
54
55
<html>
<head>
<link rel="stylesheet" href="jquery-ui/jquery-ui.css">
<link rel="stylesheet" href="jquery-ui/jquery-ui.structure.css">
<link rel="stylesheet" href="jquery-ui/jquery-ui.theme.css">
<style>
.dateinput{
color:black;
}
#mydiv input{
width:50%;
}
</style>
</head>
<body>
<h2>Accordion Widget</h2>
<div id="panels">
<h3>Shayari Youth</h3>
<p>Play quiz and tournaments and win real cash in minutes.Play quiz and tournaments aside
long as possible and win as many cash prizes as possible
</p>
<h3>Eduviq.com</h3>
<p>eduviq.com is tech blog with latest tech news</p>
<h3>Business aur dhandha</h3>
<p>business rules and strategy that makes you a succesfull businessman</p><h3>Shayari Youth</h3>
<p>Play quiz and tournaments and win real cash in minutes</p>
<h3>Eduviq.com</h3>
<p><b>eduviq.com </b>is tech blog with latest tech news</p>
<h3>Business aur dhandha</h3>
<p>business rules and strategy that makes you a succesfull businessman</p>
<h3>Momin Youth's</h3>
</div>
</body>
<script src="jquery.js" type="text/javascript"></script>
<script src="jquery-ui/jquery-ui.js" type="text/javascript"></script>
<script>
$("#panels").accordion({
collapsible:true,
//event:"mouseover",
event:"click",
animate:300,
active:0,
heightStyle:true,
icons:{header:"ui-icon-plus",activeHeader:"ui-icon-minus"}
});
</script>
</html>