<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Setting Bootstrap Tooltip's Container 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: 150px; } </style> <script> $(document).ready(function(){ // Append tooltip HTML to wrapper element $("#myTooltip").tooltip({ container: "#wrapper" }); }); </script> </head> <body> <div id="wrapper" class="bs-example"> <p> <a href="#" id="myTooltip" data-bs-toggle="tooltip" title="This is a tooltip">Hover over me</a> </p> <p><strong>Note:</strong> Instead of using the body elements in this instance, dynamically produced tooltip HTML code will be added to the end of the "#wrapper" div. To see the true outcome, examine the DOM.</p> </div> </body> </html>