javascript - How to show the tooltip on top of screen -
javascript - How to show the tooltip on top of screen -
<html> <span ng-if="item.description!=''&&item.description!=null"><img tooltip-placement="bottom" tooltip-html-unsafe="{{item.description}}" class="tooltip-icon malign" src="app/img/permission.png"/></span> <span ng-if="item.description==''||item.description==null"><img tooltip-placement="bottom" tooltip-html-unsafe="no description available" class="tooltip-icon malign" src="app/img/permission.png"/></span> </html>
i facing issues edit , delete tool tip not displaying in front end screen.it breaking behind background screen.
then added
position:fixed;
so after tool tip displaying correctly.
if want basic tooltip, may try
<img title="this tooltip"
javascript jquery html css angularjs
Comments
Post a Comment