40 |
aurelien |
1 |
<!DOCTYPE html>
|
|
|
2 |
<html lang="en">
|
|
|
3 |
<head>
|
|
|
4 |
<meta charset="UTF-8" />
|
|
|
5 |
<title>jQuery UI Slider - Range with fixed minimum</title>
|
|
|
6 |
<link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="stylesheet" />
|
|
|
7 |
<script type="text/javascript" src="../../jquery-1.4.2.js"></script>
|
|
|
8 |
<script type="text/javascript" src="../../ui/jquery.ui.core.js"></script>
|
|
|
9 |
<script type="text/javascript" src="../../ui/jquery.ui.widget.js"></script>
|
|
|
10 |
<script type="text/javascript" src="../../ui/jquery.ui.mouse.js"></script>
|
|
|
11 |
<script type="text/javascript" src="../../ui/jquery.ui.slider.js"></script>
|
|
|
12 |
<link type="text/css" href="../demos.css" rel="stylesheet" />
|
|
|
13 |
<style type="text/css">
|
|
|
14 |
#demo-frame > div.demo { padding: 10px !important; };
|
|
|
15 |
</style>
|
|
|
16 |
<script type="text/javascript">
|
|
|
17 |
$(function() {
|
|
|
18 |
$("#slider-range-min").slider({
|
|
|
19 |
range: "min",
|
|
|
20 |
value: 37,
|
|
|
21 |
min: 1,
|
|
|
22 |
max: 700,
|
|
|
23 |
slide: function(event, ui) {
|
|
|
24 |
$("#amount").val('$' + ui.value);
|
|
|
25 |
}
|
|
|
26 |
});
|
|
|
27 |
$("#amount").val('$' + $("#slider-range-min").slider("value"));
|
|
|
28 |
});
|
|
|
29 |
</script>
|
|
|
30 |
</head>
|
|
|
31 |
<body>
|
|
|
32 |
|
|
|
33 |
<div class="demo">
|
|
|
34 |
|
|
|
35 |
<p>
|
|
|
36 |
<label for="amount">Maximum price:</label>
|
|
|
37 |
<input type="text" id="amount" style="border:0; color:#f6931f; font-weight:bold;" />
|
|
|
38 |
</p>
|
|
|
39 |
|
|
|
40 |
<div id="slider-range-min"></div>
|
|
|
41 |
|
|
|
42 |
</div><!-- End demo -->
|
|
|
43 |
|
|
|
44 |
<div class="demo-description">
|
|
|
45 |
|
|
|
46 |
<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>
|
|
|
47 |
|
|
|
48 |
</div><!-- End demo-description -->
|
|
|
49 |
|
|
|
50 |
</body>
|
|
|
51 |
</html>
|