HTML CSS examples for Bootstrap:Accordion
.collapse('show'): shows a collapsible element.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Example of Bootstrap 3 Collapse Methods</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ $(".toggle-false").click(function(){ $("#myCollapsible").collapse({ toggle: false<!--from ww w . jav a 2 s .com--> }); }); $(".show-btn").click(function(){ $("#myCollapsible").collapse('show'); }); $(".hide-btn").click(function(){ $("#myCollapsible").collapse('hide'); }); $(".toggle-btn").click(function(){ $("#myCollapsible").collapse('toggle'); }); }); </script> <style type="text/css"> p { background: #F9F9F9; border: 1px solid #E1E1E8; margin: 10px 0; padding: 8px; } .bs-example{ margin: 20px; } </style> </head> <body> <div> <!-- Trigger Button HTML --> <input type="button" class="btn btn-primary toggle-false" value="Toggle False"> <input type="button" class="btn btn-primary show-btn" value="Show Button"> <input type="button" class="btn btn-primary hide-btn" value="Hide Button"> <input type="button" class="btn btn-primary toggle-btn" value="Toggle Button"> <!-- Collapsible Element HTML --> <div id="myCollapsible"> <p>This is an example of twitter bootstrap collapse methods. Click on the buttons to see how it works.</p> </div> </div> </body> </html>