Show Output
<!DOCTYPE html> <html lang="en"> <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 Events</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.12.4/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ $('#myCollapsible').on('hidden.bs.collapse', function(){ alert('Collapsible element has been completely closed.'); }); }); </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 class="bs-example"> <!-- Trigger Button HTML --> <input type="button" class="btn btn-primary" data-toggle="collapse" data-target="#myCollapsible" value="Toggle Button"> <!-- Collapsible Element HTML --> <div id="myCollapsible" class="collapse in"><p>This is a simple example of hidden event. If you click on the <b>Toggle Button</b> button you will see an alert message when the sliding transition of collapsible element is fully completed.</p></div> </div> </body> </html>