AngularJS Animation

Along with various important features, AngularJS also provides the functionality of animation. AngularJS provides some inbuilt directives especially created for animation which you can directly use in your application. Or you can use $animate service with the custom directive for animation purpose. In this tutorial, we are covering animation via inbuilt directives. Animation using $animate service …

AngularJS Provider

Provider works in the same way as the service or factory works. It has an additional functionality that could be configured during the module configuration phase. We can configure a provider according to our requirement. We applied this configuration when we want that our configuration must be set, before the application start. The provider usually defined with …

AngularJS – Dependency Injection

Dependency Injection is the pattern of designing software in which one or more services (known as dependencies) can be injected in the component (dependent object). It makes our code more maintainable, testable and usable. There are many components in which dependency can be applied like controllers, directives, filter,  service, factory, provider, value, constant. But some of …

Remove Hashtag From The Routing URL – $locationProvider

You have noticed that whenever you write the URL of an Angular application, a hashtag, i.e /#/, always appear after the application root folder. For Example: –  https://www.formget.com/tutorial/angularjs/#/emp_details/0 It happens because AngularJS is a javascript framework which work at front-end rather than back-end. So, angular adds a hashtag, by default, after the application root folder …

AngularJS Routing : Connect Different Templates In Single Page Application

AngularJS Routing is one of the amazing feature provided by Angular. Routing helps in expanding the scope of view and allow us to use multiple templates within a single page application. In this tutorial, we are going to demonstrate you how to configure and use routing in your single page application. First we will explain …

AngularJS Module : Building Blocks To Angular

In this tutorial, we will give you conceptual and implementation information about AngularJS Module. First we will explain the core concept of Modules and then we will create a simple application for the implementation understanding of the concept. So, Let’s begin with the conceptual part. AngularJS – Module A module is a collection of the …