jquery-ui/demos/slider/range.html

43 lines
1.3 KiB
HTML
Raw Normal View History

2012-09-10 15:33:46 +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">
<title>jQuery UI Slider - Range slider</title>
2010-10-13 14:39:50 +00:00
<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
2012-11-14 20:22:01 +00:00
<script src="../../jquery-1.8.3.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">
<script>
2008-12-30 04:16:51 +00:00
$(function() {
2010-10-13 14:39:50 +00:00
$( "#slider-range" ).slider({
2008-12-30 04:16:51 +00:00
range: true,
min: 0,
max: 500,
2010-10-13 14:39:50 +00:00
values: [ 75, 300 ],
slide: function( event, ui ) {
$( "#amount" ).val( "$" + ui.values[ 0 ] + " - $" + ui.values[ 1 ] );
}
2008-12-30 04:16:51 +00:00
});
2010-10-13 14:39:50 +00:00
$( "#amount" ).val( "$" + $( "#slider-range" ).slider( "values", 0 ) +
" - $" + $( "#slider-range" ).slider( "values", 1 ) );
2008-12-30 04:16:51 +00:00
});
</script>
</head>
<body>
<p>
2010-10-13 14:39:50 +00:00
<label for="amount">Price range:</label>
<input type="text" id="amount" style="border:0; color:#f6931f; font-weight:bold;" />
</p>
2008-12-30 04:16:51 +00:00
<div id="slider-range"></div>
2010-10-13 14:39:50 +00:00
<div class="demo-description">
<p>Set the <code>range</code> option to true to capture a range of values with two drag handles. The space between the handles is filled with a different background color to indicate those values are selected.</p>
2012-09-10 15:33:46 +00:00
</div>
2008-12-30 04:16:51 +00:00
</body>
</html>