-
Notifications
You must be signed in to change notification settings - Fork 0
/
jQueryAccordionControl.aspx
36 lines (33 loc) · 1.54 KB
/
jQueryAccordionControl.aspx
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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="jQueryAccordionControl.aspx.cs" Inherits="ASP_NET_AJAX_Controls.jQueryAccordionControl" %>
<!-- https://jqueryui.com/accordion/ -->
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script src="https://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css">
<script>
$(function () {
$("#accordion").accordion();
});
</script>
</head>
<body>
<form id="form1" runat="server">
<div id="accordion">
<h3>Header 1</h3>
<div>asdhgasdhas heskjhdaskjd hjeksdkd wkjsdjkjsdk ksjdkljdklsjdkl kdjskldjslkdjskl kakljdlkajd djaskldjslkd</div>
<h3>Header 2</h3>
<div>asdhgasdhas heskjhdaskjd hjeksdkd wkjsdjkjsdk ksjdkljdklsjdkl kdjskldjslkdjskl kakljdlkajd djaskldjslkd</div>
<h3>Header 3</h3>
<div>asdhgasdhas heskjhdaskjd hjeksdkd wkjsdjkjsdk ksjdkljdklsjdkl kdjskldjslkdjskl kakljdlkajd djaskldjslkd</div>
<h3>Header 4</h3>
<div>asdhgasdhas heskjhdaskjd hjeksdkd wkjsdjkjsdk ksjdkljdklsjdkl kdjskldjslkdjskl kakljdlkajd djaskldjslkd</div>
</div>
</form>
</body>
</html>