2010-03-12 03:18:34 +00:00
|
|
|
<!DOCTYPE html>
|
2008-12-30 04:16:51 +00:00
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2010-10-13 14:39:50 +00:00
|
|
|
<meta charset="utf-8" >
|
2009-01-20 21:10:12 +00:00
|
|
|
<title>jQuery UI Slider - Default functionality</title>
|
2010-10-13 14:39:50 +00:00
|
|
|
<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
|
2010-11-12 14:19:26 +00:00
|
|
|
<script src="../../jquery-1.4.4.js"></script>
|
2010-10-13 14:39:50 +00:00
|
|
|
<script src="../../ui/jquery.ui.core.js"></script>
|
|
|
|
<script src="../../ui/jquery.ui.widget.js"></script>
|
|
|
|
<script src="../../ui/jquery.ui.mouse.js"></script>
|
|
|
|
<script src="../../ui/jquery.ui.slider.js"></script>
|
|
|
|
<link rel="stylesheet" href="../demos.css">
|
|
|
|
<style>
|
|
|
|
#demo-frame > div.demo { padding: 10px !important; }
|
2008-12-31 14:25:59 +00:00
|
|
|
</style>
|
2010-10-13 14:39:50 +00:00
|
|
|
<script>
|
2008-12-30 04:16:51 +00:00
|
|
|
$(function() {
|
2010-10-13 14:39:50 +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 -->
|
|
|
|
|
|
|
|
|
|
|
|
|
2010-10-13 14:39:50 +00:00
|
|
|
<div class="demo-description">
|
|
|
|
<p>The basic slider is horizontal and has a single handle that can be moved with the mouse or by using the arrow keys.</p>
|
2008-12-30 19:08:39 +00:00
|
|
|
</div><!-- End demo-description -->
|
|
|
|
|
2008-12-30 04:16:51 +00:00
|
|
|
</body>
|
|
|
|
</html>
|