jqwidgets-framework
Version:
jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.
66 lines (59 loc) • 2.99 kB
HTML
<html lang="en">
<head>
<meta name="keywords" content="jQuery Accordion, Expander, Toggle Bar, Expander Bar, Navigation Bar, Accordion, jqxNavigationBar, jqxExpander" />
<meta name="description" content="Expander is a simple and easy to use widget that shows/hides
an element. It supports several built-in expand modes. You can set it up to show
or hide an element after a click, double-click or mouse enter event on the expander's
header. This widget also comes with customizable slide and fade animations." />
<title id='Description'>
Expander widget with Header and Content HTML Elements. The demonstration is using Typescript and Javascript.
</title>
<!-- 1. Load references -->
<script src="../../../scripts/jquery-1.11.1.min.js"></script>
<script src="../../../jqwidgets/jqxcore.js"></script>
<script src="../../../jqwidgets/jqxexpander.js"></script>
<script src="typescript-expander.js"></script>
<link rel="stylesheet" href="../../../jqwidgets/styles/jqx.base.css" type="text/css" />
<script type="text/javascript" src="../../../scripts/demos.js"></script>
<!-- 2. Create initialization -->
<script>
$(document).ready(function () {
createExpander('#jqxExpander');
});
</script>
</head>
<!-- 3. Display the application -->
<body>
<div class="example-description">
Expander widget with Header and Content HTML Elements. The demonstration is using Typescript and Javascript.
</div>
<div id='jqxWidget' style="float: left;">
<div id='jqxExpander'>
<div>
Early History of the Internet
</div>
<div>
<ul>
<li>1961 First packet-switching papers</li>
<li>1966 Merit Network founded</li>
<li>1966 ARPANET planning starts</li>
<li>1969 ARPANET carries its first packets</li>
<li>1970 Mark I network at NPL (UK)</li>
<li>1970 Network Information Center (NIC)</li>
<li>1971 Merit Network's packet-switched network operational</li>
<li>1971 Tymnet packet-switched network</li>
<li>1972 Internet Assigned Numbers Authority (IANA) established</li>
<li>1973 CYCLADES network demonstrated</li>
<li>1974 Telenet packet-switched network</li>
<li>1976 X.25 protocol approved</li>
<li>1979 Internet Activities Board (IAB)</li>
<li>1980 USENET news using UUCP</li>
<li>1980 Ethernet standard introduced</li>
<li>1981 BITNET established</li>
</ul>
</div>
</div>
</div>
</body>
</html>