I am using MJQuery slider. The step increment in the slider is not working when i am using Mobile JQuery. however, it is working for the normal version This is version of the page without using mobile JQuery. In this case you cannot position slider control at any point in the range.
http://users.ecs.soton.ac.uk/smaj08r/vidtest/indexNotMJQ.html
code:
<html>
<script src="jquery-1.8.3.js"></script>
</head>
<body>
This is slider without MJQuery
<input type="range" name="slider-step" id="slider-step" value="2" min="1" max="4" step="1" />
</body>
</html>
In the following version, I am using Mobile JQuery and here the Step Increment in the slider control is not working. You can position the slider at any intermediate point between two increments.
http://users.ecs.soton.ac.uk/smaj08r/vidtest/indexMJQ.html
code:
<html><head>
<script src="jquery-1.8.3.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js">
</script>
</head><body>
<div data-role="page">
<div data-role="content">
<input type="range" name="slider-step" id="slider-step" value="20" min="0" max="100" step="20" />
</div>
</div>
</body>
</html>
In the mobile JQuery version the slider can be positioned at any point in the range which is wrong. I have no idea Why? Please Help. Many thanks,