I'm working with Bootstrap 5.
I have a tooltip where I want to display a text (which is working fine) and a image so i've used data-bs-html="true".
My input incl. my tooltip looks like following:
<input
class="form-control tooltip-element"
data-bs-placement="right"
data-bs-html="true"
title="Test title.<br><img src='../assets/picture.png'>"
/>
When I go to Network I will always get ERROR 304 because the file will be lost in the cache.
How can I solve this problem? Thanks in advance!
INFO: Path and all values / definitions are correct.