Skip to main content

Posts

Showing posts with the label ng href directives in angularjs

ng-href directives in angularjs

The ng-href is a angular directive just like href tag both are working same. The  ng-href directive is standard way to use angularjs and bind it dynamically URLs to user data.  If not, your href are broken when they contain interpolation directives. for example . The  href tag will look like in angular < div >     < a href ="http://facebook.com/{{ username }}" target ="_self"  title ="http://facebook.com/{{username}} > Facebook Page </ a > </ div > for example . in angular ng-href   directive will look like. < div >     < a ng-href ="http://facebook.com/{{username}}" target ="_self" title ="http://facebook.com/{{username}}"> My Facebook Page.. </ a > </ div > The detail example of ng-href   directive as given below. < !DOCTYPE html > < html > < head lang ="en">     < meta charset ="utf-8"...