When application needs to have deep linking within Tabbed navigation Child Routes are the best options in Angular.
Category: AngularJS
AngularJS: Communicate Among Controllers
Working with AngularJS has made things very easy for front-end developers. We can handle almost everything with Controllers. Sometimes we needed to work with more than one controllers and we need to communicate between those controllers. It would be easy to communicate between controllers if they are in parent-child relation.
Creating Custom Directives in AngularJS
Directives are markers on a DOM element that tell AngularJS's HTML compiler ($compile) to attach a specified behavior to that DOM element, or even to transform the DOM element and its children.
Difference between ngIf and ngShow-ngHide in AngularJS
Main difference between ngIf & ngShow/ngHide is ngIf will not render the DOM element and ngShow/ngHide will show/hide the DOM element. It is very important to learn basic fundamentals of the framework.
Fetch XML feed with AngularJS
AngularJS fetches the JSON feed from external file. But in case if we want to fetch the feed from an XML, we can use x2js plugin of angularJS which will help us fetch data from external XML files.