"Collapse Filters Panel"
Bootstrap 3.1.0 Snippet by iosdsv

<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.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 class="container"> <div class="row"> <div id="filter-panel" class="collapse filter-panel"> <div class="panel panel-default"> <div class="panel-body"> <form class="form-inline" role="form"> <div class="form-group"> <label class="filter-col" style="margin-right:0;" for="pref-perpage">Rows per page:</label> <select id="pref-perpage" class="form-control"> <option value="2">2</option> <option value="3">3</option> <option value="4">4</option> <option value="5">5</option> <option value="6">6</option> <option value="7">7</option> <option value="8">8</option> <option value="9">9</option> <option selected="selected" value="10">10</option> <option value="15">15</option> <option value="20">20</option> <option value="30">30</option> <option value="40">40</option> <option value="50">50</option> <option value="100">100</option> <option value="200">200</option> <option value="300">300</option> <option value="400">400</option> <option value="500">500</option> <option value="1000">1000</option> </select> </div> <!-- form group [rows] --> <div class="form-group"> <label class="filter-col" style="margin-right:0;" for="pref-search">Search:</label> <input type="text" class="form-control input-sm" id="pref-search"> </div><!-- form group [search] --> <div class="form-group"> <label class="filter-col" style="margin-right:0;" for="pref-orderby">Order by:</label> <select id="pref-orderby" class="form-control"> <option>Descendent</option> </select> </div> <!-- form group [order by] --> <div class="form-group"> <div class="checkbox" style="margin-left:10px; margin-right:10px;"> <label><input type="checkbox"> Remember parameters</label> </div> <button type="submit" class="btn btn-default filter-col"> <span class="glyphicon glyphicon-record"></span> Save Settings </button> </div> </form> </div> </div> </div> <button type="button" class="btn btn-primary" data-toggle="collapse" data-target="#filter-panel"> <span class="glyphicon glyphicon-cog"></span> Advanced Search </button> </div> </div>
.container{ margin-top:30px; } .filter-col{ padding-left:10px; padding-right:10px; }

Related: See More


Questions / Comments:

the sliding wont work for me. Can you tell me?

Shabeer () - 9 years ago - Reply 0


What am I missing to get the sliding up and down effect?

hello () - 9 years ago - Reply 0


Make sure the jQuery is loaded and that Bootstrap javascript is loaded after the jQuery.

maxsurguy () - 9 years ago - Reply 0