<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Hiding Bootstrap Popovers on Next Click</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>
$(document).ready(function(){
$('[data-bs-toggle="popover"]').popover({
<div class="popover-demo mb-2">
<a href="#" class="btn btn-primary" data-bs-toggle="popover" tabindex="0" data-bs-trigger="focus" title="Popover title" data-bs-content="Default popover">Popover</a>
<a href="#" class="btn btn-success" data-bs-toggle="popover" tabindex="0" data-bs-trigger="focus" title="Popover title" data-bs-content="Another popover">Another popover</a>
<a href="#" class="btn btn-info" data-bs-toggle="popover" tabindex="0" data-bs-trigger="focus" title="Popover title" data-bs-content="A larger popover to demonstrate the max-width of the Bootstrap popover.">Large popover</a>
<a href="#" class="btn btn-warning" data-bs-toggle="popover" tabindex="0" data-bs-trigger="focus" title="Popover title" data-bs-content="The last tip!">Last popover</a>
<p><strong>Note:</strong> Click on the buttons to show/hide the popover.</p>