Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Setting Popovers Title Text in Bootstrap 4</title> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"> <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js"></script> <style> .bs-example{ margin: 150px 50px; } .bs-example a{ margin-right: 20px; } </style> <script> $(document).ready(function(){ $("#myPopovers a").popover({ title : 'Default Title Text' }); }); </script> </head> <body> <div class="bs-example"> <div id="myPopovers" class="mb-2"> <a href="#" class="btn btn-primary" data-toggle="popover" data-content="This is a link without title attribute. The title text of this popover is defined in JavaScript.">Popover</a> <a href="#" class="btn btn-secondary" data-toggle="popover" data-content="This is another link without the title attribute. The title text of this popover is also defined in JavaScript.">Another Popover</a> </div> <p><strong>Note:</strong> Click on the buttons to show/hide the popover.</p> </div> </body> </html>