Working on a project using Bootstrap 5
.
I've implemented a tooltip
that displays text and an image successfully by using data-bs-html="true"
.
Here is how my input, including the tooltip
, is structured:
<input
class="form-control tooltip-element"
data-bs-placement="right"
data-bs-html="true"
title="Test title.<br><img src='../assets/picture.png'>"
/>
However, I keep encountering ERROR 304
in the Network
because the file gets lost in the cache. Any suggestions on how to resolve this issue? Thank you in advance!
NOTE: The path and all values/definitions are accurate.