mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
26 lines
720 B
HTML
26 lines
720 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Slider Visual Test : Slider horizontal range min</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.1.js"></script>
|
|
<script type="text/javascript" src="../../../ui/ui.core.js"></script>
|
|
<script type="text/javascript" src="../../../ui/ui.slider.js"></script>
|
|
<script type="text/javascript">
|
|
$(function() {
|
|
$("#slider-horizontal-range-min").slider({
|
|
orientation: 'horizontal',
|
|
range: 'min',
|
|
value: 25
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="slider-horizontal-range-min"></div>
|
|
|
|
</body>
|
|
</html>
|