Create a slider with min/max and value
Description
The following code shows how to create a slider with min/max and value.
Example
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet"
href="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.css" />
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script
src="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js"></script>
<!-- www. j a v a 2 s .co m-->
<style type='text/css'>
.ui-slider-input {
display: none !important;
}
</style>
</head>
<body>
<div data-role="page">
<div data-role="content">
<label for="slider" class="ui-hidden-accessible">
Input slider:</label>
<input type="range" name="slider"
id="_slider" value="25" min="0" max="100" />
</div>
</div>
</body>
</html>