2009-11-21 22:30:54 +00:00
<!doctype html>
< html lang = "en" >
< head >
< title > Slider Visual Test : Slider ticket #4467< / title >
< link rel = "stylesheet" href = "../visual.css" type = "text/css" / >
< link rel = "stylesheet" href = "../../../themes/base/ui.all.css" type = "text/css" >
< script type = "text/javascript" src = "../../../jquery-1.3.2.js" > < / script >
< script type = "text/javascript" src = "../../../ui/jquery.ui.core.js" > < / script >
< script type = "text/javascript" src = "../../../ui/jquery.ui.slider.js" > < / script >
< script type = "text/javascript" >
$(function() {
$("#slider").slider({
range: true,
values: [25, 75]
});
});
< / script >
< style type = "text/css" >
.ui-slider-handle {
width: 100px !important;
}
< / style >
< / head >
< body >
< h1 class = "ui-widget-header" > < a href = "http://dev.jqueryui.com/ticket/4467" > #4467 - slider handle jumps few pixels right or left if it's clicked on it< / a > < / h1 >
< div id = "slider" > < / div >
< / body >
< / html >