Skip to main content

Posts

Showing posts with the label AngularJs title binding

AngularJs title binding using ng-attr-title

Hello everyone, I am going to share the code sample for display the title on link mouse over using the angular title attribute( ng-attr-title ). The all the detail of title binding as given below, if you want to see the live running demo for the same then you click on below given link. The demo link http://embed.plnkr.co/Bk12qs/preview Controller code-sample as given below     var app = angular.module( 'titleApp' , []);     app.controller( 'titleCtrl' , function ($scope) {         $scope.domain = 'http://www.code-sample.com' ;     }); HTML code-sample as given below < div ng-app ="titleApp" ng-controller ="titleCtrl">    < a ng-attr-title ="{{domain}}" href ="#"> code-sample.com </ a > </ div > The Live demo code-sample (AngularJs + HTML) < !DOCTYPE html > < html > < head >    ...