I have an html code like below,
<img src="{% static 'img/orange.png' %}" alt="Active Review" align="right" width="22" height="22" title="tooltip" ng-show="vio.orc_display.create_status == 8"/>
Including data-content(din't work too)
<img src="{% static 'img/orange.png' %}" data-toggle="popover" title="link to siverify" data-content="<a href='{% url 'verification' %}'</a>" alt="Active Review" align="right" width="22" height="22" ng-show="vio.orc_display.create_status == 8"/>
The title field gives me plain text tooltip. Is there any way to put a link in the tooltip in html?
For eg., I need to add the link "https://stackoverflow.com/" in the tooltip while I hover over the image specified in the code.