Angularjs 49
AngularJS Custom Filter
AngularJS provides $filter() method to creates custom filter. Filter can be used to the AngularJS expression.It is used as {{expression | filterName}}. In this demo,"We will create custom filter which will detect any vowel character if present inside a word". Below code shows a custom filter declaration and use inside a AngularJS expression.If a vowel […]
AngularJS $rootElement Example
AngularJS application module can be defined using ngApp directive. The element where the ngApp directive used is also known as root element.This element can be accessed using $rootElement object provided by AngularJS. In this Demo, […]
AngularJS Cookie Example
AngularJS framework provides cookie module ngCookies package.Also it provides cookieStore object with get(),put() and remove() method. The cookie feature is available in angular-cookies.min.js file. In this demo, "We will demonstrate cookie and cookieStore use in simple example". <!DOCTYPE html> <html […]
AngularJS $watch $watchCollection and $watchGroup Method
AngularJS 1.3 release candidate provides $watch(), $watchCollection() and $watchGroup() method. These methods are for watching changes of scope variables.Each of these methods has callback function which gets called when the watching properties are changed. $watch method is for […]