2008-12-30 04:16:51 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<title>jQuery UI Slider - Default Demo</title>
|
2009-01-07 02:36:51 +00:00
|
|
|
<link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
|
2009-01-08 05:39:38 +00:00
|
|
|
<script type="text/javascript" src="../../jquery-1.2.6.js"></script>
|
2008-12-30 04:16:51 +00:00
|
|
|
<script type="text/javascript" src="../../ui/ui.core.js"></script>
|
|
|
|
<script type="text/javascript" src="../../ui/ui.slider.js"></script>
|
2008-12-31 06:29:31 +00:00
|
|
|
<link type="text/css" href="../demos.css" rel="stylesheet" />
|
2008-12-31 15:22:54 +00:00
|
|
|
<style type="text/css">
|
2008-12-31 14:25:59 +00:00
|
|
|
#demo-frame > div.demo { padding: 10px !important; };
|
|
|
|
</style>
|
2008-12-30 04:16:51 +00:00
|
|
|
<script type="text/javascript">
|
|
|
|
$(function() {
|
2008-12-31 05:01:58 +00:00
|
|
|
$("#slider").slider();
|
2008-12-30 04:16:51 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
2008-12-30 19:08:39 +00:00
|
|
|
<div class="demo">
|
|
|
|
|
2008-12-30 04:16:51 +00:00
|
|
|
<div id="slider"></div>
|
|
|
|
|
2008-12-30 19:08:39 +00:00
|
|
|
</div><!-- End demo -->
|
|
|
|
|
|
|
|
<div class="demo-description">
|
|
|
|
|
2008-12-31 05:01:58 +00:00
|
|
|
<p>
|
|
|
|
The default slider has a single handle and is horizontal.
|
|
|
|
The handle can be moved with the mouse or by using the arrow keys and has full ARIA attributes for accessibility.
|
|
|
|
</p>
|
2008-12-30 19:08:39 +00:00
|
|
|
|
|
|
|
</div><!-- End demo-description -->
|
|
|
|
|
2008-12-30 04:16:51 +00:00
|
|
|
</body>
|
|
|
|
</html>
|