I am trying to make the tooltip work for a tag but it won't I have used this code:
<td class="text-end">
<i class="ki-duotone ki-notepad-edit">
<span class="path1"></span>
<span class="path2"></span>
</i>
</td>
but it isn't working what should I do
Hi,
Please refer to Bootstrap Tooltips guide.
And for elements inside table's td cells please wrap it with DIV element:
<td>
<div data-bs-toggle="tooltip" data-bs-placement="top" title="Tooltip on top">
<i class="ki-duotone ki-notepad-edit">
<span class="path1"></span>
<span class="path2"></span>
</i>
</div>
</td>