Need Slider Scroll Bar
HiI want a Slider Scroll Bar move in horizontally with 10 interval min value 100 and max value 500. Every change of scroller value another value get from database and that value display on label.
<html>
<head>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.0/jquery-ui.js"></script>
<script>
$( function() {
$( "#Div" ).slider();
} );
</script>
</head>
<body>
<div id="sliderDiv"></div>
</body>
</html>
https://jqueryui.com/slider/