Tag: custom
How to Create Custom Directives in AngularJs
by  Java4s | 2 Comments
  [ Ask Question ]
In this article I will describe how to create custom directives in the AngularJs. Custom angular directives are the markers of DOM element, I mean we will write the custom directives as normal HTML elements, attributes, CSS classes and as…
How to Create Custom Filters In AngularJS
  [ Ask Question ]
In the previous article, we had a look at built-in Angular filters, these built-in filters will cover many common use cases, but you can also create your own filters in Angular 🙂 by writing logic based on your requirement. Hmm…