2008-12-30 04:16:51 +00:00
<!doctype html>
< html lang = "en" >
< head >
2009-01-20 21:10:12 +00:00
< title > jQuery UI Slider - Snap to increments< / title >
2009-01-07 02:36:51 +00:00
< 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 >
2009-09-17 10:39:12 +00:00
< script type = "text/javascript" src = "../../ui/jquery.ui.core.js" > < / script >
< 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").slider({
2008-12-30 21:33:00 +00:00
value:100,
2008-12-30 20:49:57 +00:00
min: 0,
max: 500,
step: 50,
slide: function(event, ui) {
$("#amount").val('$' + ui.value);
}
2008-12-30 04:16:51 +00:00
});
2008-12-31 01:59:32 +00:00
$("#amount").val('$' + $("#slider").slider("value"));
});
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" > Donation amount ($50 increments):< / label >
2008-12-31 20:03:03 +00:00
< input type = "text" id = "amount" style = "border:0; color:#f6931f; font-weight:bold;" / >
2008-12-31 05:01:58 +00:00
< / p >
2008-12-30 04:16:51 +00:00
< div id = "slider" > < / div >
2008-12-30 19:08:39 +00:00
< / div > <!-- End demo -->
2008-12-31 05:01:58 +00:00
< div class = "demo-description" >
2009-01-28 10:49:44 +00:00
< p > Increment slider values with the < code > step< / code > option set to an integer, commonly a dividend of the slider's maximum value. The default increment is 1.< / p >
2008-12-30 19:08:39 +00:00
< / div > <!-- End demo - description -->
2008-12-30 04:16:51 +00:00
< / body >
< / html >