Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Creating Bootstrap Collapsible Element via JavaScript</title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"></script> <script> document.addEventListener("DOMContentLoaded", function(){ var btn = document.getElementById("myBtn"); var element = document.getElementById("myCollapse"); // Create a collapse instance, toggles the collapse element on invocation var myCollapse = new bootstrap.Collapse(element); btn.addEventListener("click", function(){ myCollapse.toggle(); }); }); </script> </head> <body> <div class="m-4"> <!-- Trigger Button HTML --> <button type="button" class="btn btn-primary mb-4" id="myBtn">Toggle Element</button> <!-- Collapsible Element HTML --> <div class="collapse" id="myCollapse"> <div class="card card-body">This is a simple example of showing and hiding specific element via data attributes. Click the trigger button to toggle this panel.</div> </div> </div> </body> </html>