Logo Luan Morina
   Popover with HTML Content and a Close Button
Illyria
Illyria

Albanians are descendants of the ancient Illyrians, who lived in central Europe and migrated southward to the territory of Albania at the beginning of the Bronze Age, about 2000 BCE.

HTML
<span data-bs-toggle="popover" title="Illyrians <span class='demo-close-button'><i class='fa-solid fa-circle-xmark'></i></span>" data-html="true" data-bs-trigger="click" data-bs-content="<p>Popover content with <strong>HTML</strong>.</p>">open modal</span>
JS (Open)
var popoverTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]'))
var popoverList = popoverTriggerList.map(function (popoverTriggerEl) {
return new bootstrap.Popover(popoverTriggerEl, {
html: true
})
})

JS (Close)
$(document).on("click", ".popover .demo-close-button" , function(){
$('[data-bs-toggle="popover"]').popover("hide");
});
   Bootstrap Popover with HTML Content and a close button