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 …

AngularJS-Directive : Incharge To Give Commands

In this tutorial, we are going to create a simple application using angularjs-directives. This application will contain the following feature. Display all the available themes product. Each theme product contains a product image, show features button, price, features section, Hide Features and Buy Themes buttons. When a user clicks on a product’s Show Features button,  the features section …

AngularJS – Introduction & Installation

What is AngularJS? AngularJS is an open-source javascript framework. AngularJS is used to extend HTML with new attributes. AngularJS is most suitable for creating one-page web applications. Before using AngularJS, You should already have basic understanding of: – HTML CSS Javascript MVC Architecture: – AngularJS follows the MVC Architecture. MVC stands for Model View Controller. …

Angular 4 : Using Bootstrap With Registration Component

This blog will help you learn how to integrate bootstrap in your Angular.JS projects and apps. Follow the steps listed below in order to integrate Bootstrap in Angular.JS – 1. For using Bootstrap in our Angular.JS app, we have to use our registration form app which we have created using custom component. 2. Our first step …

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 …