Javascript 51
Using Resources In AngularJS
AngularJS provides $resource module for handling remote data.This module supports REST data interaction. In the core of AngularJS $http module provides core functionality for remote data interaction. In this Demo, "We are going to access a student data file from a remote url through $resource module in Angularjs and displaying them in a table". In […]
Understanding Partials In AngularJS
"PARTIALS" are Similar to a Angular template.The only difference is there they can be a part of a template. In this Demo, "We Will create a partial template for Student Which will have table rows displaying details of each student.This Student Table will be rendered when a button will be clicked". I believe you have […]
Integrating Bootstrap UI with AngularJS
Twitter provides its Bootstrap UI for AngularJS in directive format.This results in more cleaner and beautiful UI in AngularJS application. In this Demo, "We will Learn How to integrate Twitter Bootstrap UI for AngularJS web application.Then We will test a Bootstrap progress bar component using a AngularJS controller". For setting up a sample AngularJS project […]
How to create multiple borders in an HTML element?
In CSS3 we have a box-shadow property which creates shadow around an element.A bit tricky use of this property can get us a multiple border in an HTML element. Example, .my-name-container{ box-shadow: 0 0 0 30px violet, 0 0 0 60px indigo, 0 0 0 90px blue, 0 0 0 120px green, 0 0 0 […]