Ive successfully got the inbuilt bootstrap popovers working simply by adding
<button type="button" data-bs-trigger="hover focus" data-bs-toggle="popover" class="btn btn-lg btn-danger" title="Popover title" data-bs-content="And here's some amazing content. It's very engaging. Right?">Click to toggle popover</button>
However the trigger part is only working with focus ( so basically need to click ) and not also with hover. I have tried with data-bs-trigger=„hover focus“ and data-trigger=„hover focus“ and neither seem to be working.
Does anyone know how to add hover functionality ?