jquery-ui/demos/slider/default.html

35 lines
923 B
HTML
Raw Normal View History

2008-12-30 04:16:51 +00:00
<!doctype html>
<html lang="en">
<head>
<title>jQuery UI Slider - Default functionality</title>
<link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
2009-02-20 11:40:25 +00:00
<script type="text/javascript" src="../../jquery-1.3.2.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>
<link type="text/css" href="../demos.css" rel="stylesheet" />
2008-12-31 15:22:54 +00:00
<style type="text/css">
#demo-frame > div.demo { padding: 10px !important; };
</style>
2008-12-30 04:16:51 +00:00
<script type="text/javascript">
$(function() {
$("#slider").slider();
2008-12-30 04:16:51 +00:00
});
</script>
</head>
<body>
<div class="demo">
2008-12-30 04:16:51 +00:00
<div id="slider"></div>
</div><!-- End demo -->
<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>
</div><!-- End demo-description -->
2008-12-30 04:16:51 +00:00
</body>
</html>