"price range slider in bootstrap"
Bootstrap 3.0.0 Snippet by katermar

<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" media="screen"> <script src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script> <div data-role="page"> <div data-role="header"> <h1>Range Slider</h1> </div> <div data-role="main" class="ui-content"> <div data-role="rangeslider"> <label for="duration-min"><fmt:message key="film.info.duration"/> : </label> <input type="range" name="year-min" id="duration-min" value="50" min="0" max="500"> <label for="duration-max">Price:</label> <input type="range" name="year-max" id="duration-max" value="100" min="0" max="500"> </div> </div> </div>

Related: See More


Questions / Comments: