2010-03-12 03:18:34 +00:00
<!DOCTYPE html>
2008-12-30 04:16:51 +00:00
< html lang = "en" >
< head >
2010-03-12 03:18:34 +00:00
< meta charset = "UTF-8" / >
2009-01-20 21:10:12 +00:00
< title > jQuery UI Slider - Vertical range slider< / title >
2010-02-16 01:38:23 +00:00
< link type = "text/css" href = "../../themes/base/jquery.ui.all.css" rel = "stylesheet" / >
2010-02-16 02:39:57 +00:00
< script type = "text/javascript" src = "../../jquery-1.4.2.js" > < / script >
2009-09-17 10:39:12 +00:00
< script type = "text/javascript" src = "../../ui/jquery.ui.core.js" > < / script >
2009-12-16 22:20:18 +00:00
< script type = "text/javascript" src = "../../ui/jquery.ui.widget.js" > < / script >
2010-01-01 12:48:11 +00:00
< script type = "text/javascript" src = "../../ui/jquery.ui.mouse.js" > < / script >
2009-09-17 10:39:12 +00:00
< script type = "text/javascript" src = "../../ui/jquery.ui.slider.js" > < / script >
2008-12-31 06:29:31 +00:00
< link type = "text/css" href = "../demos.css" rel = "stylesheet" / >
2008-12-31 15:22:54 +00:00
< style type = "text/css" >
2008-12-31 14:25:59 +00:00
#demo-frame > div.demo { padding: 10px !important; };
< / style >
2008-12-30 04:16:51 +00:00
< script type = "text/javascript" >
$(function() {
$("#slider-range").slider({
orientation: "vertical",
range: true,
2008-12-31 05:01:58 +00:00
values: [17, 67],
slide: function(event, ui) {
$("#amount").val('$' + ui.values[0] + ' - $' + ui.values[1]);
}
2008-12-30 04:16:51 +00:00
});
2008-12-31 05:01:58 +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 >
2008-12-30 19:08:39 +00:00
< div class = "demo" >
2008-12-31 05:01:58 +00:00
< p >
< label for = "amount" > Target sales goal (Millions):< / label >
< input type = "text" id = "amount" style = "border:0; color:#f6931f; font-weight:bold;" / >
< / p >
2008-12-30 19:08:39 +00:00
< div id = "slider-range" style = "height:250px;" > < / div >
< / div > <!-- End demo -->
< div class = "demo-description" >
2009-01-28 10:49:44 +00:00
< p > Change the orientation of the range slider to vertical. Assign a height value via < code > .height()< / code > or by setting the height through CSS, and set the < code > orientation< / code > option to "vertical."< / p >
2008-12-30 19:08:39 +00:00
< / div > <!-- End demo - description -->
2008-12-30 04:16:51 +00:00
< / body >
< / html >