Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Calling Bootstrap Popover Methods Using jQuery</title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"> <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"></script> <style> .bs-example{ margin: 100px 20px; } </style> <script> $(document).ready(function(){ $("#showPopover").click(function(){ $("#myPopover").popover("show"); }); $("#hidePopover").click(function(){ $("#myPopover").popover("hide"); }); $("#togglePopover").click(function(){ $("#myPopover").popover("toggle"); }); $("#enablePopover").click(function(){ $("#myPopover").popover("enable"); }); $("#disablePopover").click(function(){ $("#myPopover").popover("disable"); }); $("#toggleEnabledPopover").click(function(){ $("#myPopover").popover("toggleEnabled"); }); $("#updatePopover").click(function(){ $("#myPopover").popover("update"); }); $("#disposePopover").click(function(){ $("#myPopover").popover("dispose"); }); }); </script> </head> <body> <div class="bs-example"> <p> <button type="button" class="btn btn-primary btn-lg" id="myPopover" data-bs-toggle="popover" title="Popover title" data-bs-content="This is a simple Bootstrap popover with a title and some content.">Click to toggle popover</button> </p> <div class="mt-4"> <p>Click on the following buttons to control the popover manually.</p> <button type="button" class="btn btn-primary" id="showPopover">Show</button> <button type="button" class="btn btn-warning" id="hidePopover">Hide</button> <button type="button" class="btn btn-success" id="togglePopover">Toogle</button> <button type="button" class="btn btn-info" id="enablePopover">Enable</button> <button type="button" class="btn btn-secondary" id="disablePopover">Disable</button> <button type="button" class="btn btn-dark" id="toggleEnabledPopover">Toogle Enabled</button> <button type="button" class="btn btn-warning" id="updatePopover">Update</button> <button type="button" class="btn btn-danger" id="disposePopover">Dispose</button> </div> </div> </body> </html>