jquery-ui/demos/slider/rangemin.html

42 lines
1.1 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 with fixed minimum</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-min" ).slider({
2008-12-30 04:16:51 +00:00
range: "min",
value: 37,
min: 1,
max: 700,
2010-10-13 14:39:50 +00:00
slide: function( event, ui ) {
$( "#amount" ).val( "$" + ui.value );
}
2008-12-30 04:16:51 +00:00
});
2010-10-13 14:39:50 +00:00
$( "#amount" ).val( "$" + $( "#slider-range-min" ).slider( "value" ) );
});
2008-12-30 04:16:51 +00:00
</script>
</head>
<body>
<p>
2010-10-13 14:39:50 +00:00
<label for="amount">Maximum price:</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-min"></div>
2010-10-13 14:39:50 +00:00
<div class="demo-description">
<p>Fix the minimum value of the range slider so that the user can only select a maximum. Set the <code>range</code> option to "min."</p>
2012-09-10 15:33:46 +00:00
</div>
2008-12-30 04:16:51 +00:00
</body>
</html>