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

<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 ----------> <div data-role="page"> <div data-role="header"> <h1>Range Slider</h1> </div> <div data-role="main" class="ui-content"> <form method="post" action="/action_page_post.php"> <div data-role="rangeslider"> <label for="price-min">가격:</label> <input type="range" name="price-min" id="price-min" value="200" min="0" max="1000"> <label for="price-max">가격:</label> <input type="range" name="price-max" id="price-max" value="800" min="0" max="1000"> </div> </form> </div> </div>

Related: See More


Questions / Comments: