While buttons and other HTML components with unique design tooltips are working fine, implementing them on dynamic dropdowns or simple components seems to strip away the design. Here is an example:
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$('[data-toggle="tooltip"]').tooltip();
});
</script>
Any suggestions on how to achieve a unique design for tooltips on dropdowns? My goal is to have tooltips with a combination of text and image when users hover over each value in the dropdown. Thanks in advance!