double ended slider
by sjpt
HTML
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>
<body>
<div data-role="rangeslider">
<input type="range" name="p-min" id="p-min" value="200" min="0" max="1000">
<input type="range" name="p-max" id="p-max" value="800" min="0" max="1000">
</div>
</body>
</html>