I am trying to use the Bootstrap tooltip in an app of mine. My app is using AngularJS Currently, I have the following:
You can create a simple directive like this:
angular.module('myApp',[]) .directive('myTooltip', function(){ return { restrict: 'A', link: function(scope, element){ element.tooltip(); } } });
Then, add your custom directive where is necessary: