| Name | Description | 
  | ngApp | Use this directive to auto-bootstrap an AngularJS application. The ngAppdirective designates the root element of the application and is typically placed near the root element of the page - e.g. on the<body>or<html>tags. | 
  | a | Modifies the default behavior of the html A tag so that the default action is prevented when the href attribute is empty. | 
  | ngHref | Using Angular markup like {{hash}}in an href attribute will make the link go to the wrong URL if the user clicks it before Angular has a chance to replace the{{hash}}markup with its value. Until Angular replaces the markup the link will be broken and will most likely return a 404 error. ThengHrefdirective solves this problem. | 
  | ngSrc | Using Angular markup like {{hash}}in asrcattribute doesn't work right: The browser will fetch from the URL with the literal text{{hash}}until Angular replaces the expression inside{{hash}}. ThengSrcdirective solves this problem. | 
  | ngSrcset | Using Angular markup like {{hash}}in asrcsetattribute doesn't work right: The browser will fetch from the URL with the literal text{{hash}}until Angular replaces the expression inside{{hash}}. ThengSrcsetdirective solves this problem. | 
  | ngDisabled | We shouldn't do this, because it will make the button enabled on Chrome/Firefox but not on IE8 and older IEs: <div ng-init="scope = { isDisabled: false }">
<button disabled="{{scope.isDisabled}}">Disabled</button>
</div>
 | 
  | ngChecked | The HTML specification does not require browsers to preserve the values of boolean attributes such as checked. (Their presence means true and their absence means false.) If we put an Angular interpolation expression into such an attribute then the binding information would be lost when the browser removes the attribute. The ngCheckeddirective solves this problem for thecheckedattribute. This complementary directive is not removed by the browser and so provides a permanent reliable place to store the binding information. | 
  | ngReadonly | The HTML specification does not require browsers to preserve the values of boolean attributes such as readonly. (Their presence means true and their absence means false.) If we put an Angular interpolation expression into such an attribute then the binding information would be lost when the browser removes the attribute. The ngReadonlydirective solves this problem for thereadonlyattribute. This complementary directive is not removed by the browser and so provides a permanent reliable place to store the binding information. | 
  | ngSelected | The HTML specification does not require browsers to preserve the values of boolean attributes such as selected. (Their presence means true and their absence means false.) If we put an Angular interpolation expression into such an attribute then the binding information would be lost when the browser removes the attribute. The ngSelecteddirective solves this problem for theselectedattribute. This complementary directive is not removed by the browser and so provides a permanent reliable place to store the binding information. | 
  | ngOpen | The HTML specification does not require browsers to preserve the values of boolean attributes such as open. (Their presence means true and their absence means false.) If we put an Angular interpolation expression into such an attribute then the binding information would be lost when the browser removes the attribute. The ngOpendirective solves this problem for theopenattribute. This complementary directive is not removed by the browser and so provides a permanent reliable place to store the binding information. | 
  | ngForm | Nestable alias of formdirective. HTML does not allow nesting of form elements. It is useful to nest forms, for example if the validity of a sub-group of controls needs to be determined. | 
  | form | Directive that instantiates FormController. | 
  | textarea | HTML textarea element control with angular data-binding. The data-binding and validation properties of this element are exactly the same as those of the input element. | 
  | input | HTML input element control with angular data-binding. Input control follows HTML5 input types and polyfills the HTML5 validation behavior for older browsers. | 
  | ngModel | The ngModeldirective binds aninput,select,textarea(or custom form control) to a property on the scope using NgModelController, which is created and exposed by this directive. | 
  | ngChange | Evaluate the given expression when the user changes the input. The expression is evaluated immediately, unlike the JavaScript onchange event which only triggers at the end of a change (usually, when the user leaves the form element or presses the return key). The expression is not evaluated when the value change is coming from the model. | 
  | ngList | Text input that converts between a delimited string and an array of strings. The delimiter can be a fixed string (by default a comma) or a regular expression. | 
  | ngValue | Binds the given expression to the value of input[select]orinput[radio], so that when the element is selected, thengModelof that element is set to the bound value. | 
  | ngBind | The ngBindattribute tells Angular to replace the text content of the specified HTML element with the value of a given expression, and to update the text content when the value of that expression changes. | 
  | ngBindTemplate | The ngBindTemplatedirective specifies that the element text content should be replaced with the interpolation of the template in thengBindTemplateattribute. UnlikengBind, thengBindTemplatecan contain multiple{{}}expressions. This directive is needed since some HTML elements (such as TITLE and OPTION) cannot contain SPAN elements. | 
  | ngBindHtml | Creates a binding that will innerHTML the result of evaluating the expressioninto the current element in a secure way. By default, the innerHTML-ed content will be sanitized using the $sanitize service. To utilize this functionality, ensure that$sanitizeis available, for example, by includingngSanitizein your module's dependencies (not in core Angular). In order to usengSanitizein your module's dependencies, you need to include "angular-sanitize.js" in your application. | 
  | ngClass | The ngClassdirective allows you to dynamically set CSS classes on an HTML element by databinding an expression that represents all classes to be added. | 
  | ngClassOdd | The ngClassOddandngClassEvendirectives work exactly as ngClass, except they work in conjunction withngRepeatand take effect only on odd (even) rows. | 
  | ngClassEven | The ngClassOddandngClassEvendirectives work exactly as ngClass, except they work in conjunction withngRepeatand take effect only on odd (even) rows. | 
  | ngCloak | The ngCloakdirective is used to prevent the Angular html template from being briefly displayed by the browser in its raw (uncompiled) form while your application is loading. Use this directive to avoid the undesirable flicker effect caused by the html template display. | 
  | ngController | The ngControllerdirective attaches a controller class to the view. This is a key aspect of how angular supports the principles behind the Model-View-Controller design pattern. | 
  | ngCsp | Enables CSP (Content Security Policy) support. | 
  | ngClick | The ngClick directive allows you to specify custom behavior when an element is clicked. | 
  | ngDblclick | The ngDblclickdirective allows you to specify custom behavior on a dblclick event. | 
  | ngMousedown | The ngMousedown directive allows you to specify custom behavior on mousedown event. | 
  | ngMouseup | Specify custom behavior on mouseup event. | 
  | ngMouseover | Specify custom behavior on mouseover event. | 
  | ngMouseenter | Specify custom behavior on mouseenter event. | 
  | ngMouseleave | Specify custom behavior on mouseleave event. | 
  | ngMousemove | Specify custom behavior on mousemove event. | 
  | ngKeydown | Specify custom behavior on keydown event. | 
  | ngKeyup | Specify custom behavior on keyup event. | 
  | ngKeypress | Specify custom behavior on keypress event. | 
  | ngSubmit | Enables binding angular expressions to onsubmit events. | 
  | ngFocus | Specify custom behavior on focus event. | 
  | ngBlur | Specify custom behavior on blur event. | 
  | ngCopy | Specify custom behavior on copy event. | 
  | ngCut | Specify custom behavior on cut event. | 
  | ngPaste | Specify custom behavior on paste event. | 
  | ngIf | The ngIfdirective removes or recreates a portion of the DOM tree based on an {expression}. If the expression assigned tongIfevaluates to a false value then the element is removed from the DOM, otherwise a clone of the element is reinserted into the DOM. | 
  | ngInclude | Fetches, compiles and includes an external HTML fragment. | 
  | ngInit | The ngInitdirective allows you to evaluate an expression in the current scope. | 
  | ngNonBindable | The ngNonBindabledirective tells Angular not to compile or bind the contents of the current DOM element. This is useful if the element contains what appears to be Angular directives and bindings but which should be ignored by Angular. This could be the case if you have a site that displays snippets of code, for instance. | 
  | ngPluralize | ngPluralizeis a directive that displays messages according to en-US localization rules. These rules are bundled with angular.js, but can be overridden (see Angular i18n dev guide). You configure ngPluralize directive by specifying the mappings between plural categories and the strings to be displayed.
 | 
  | ngRepeat | The ngRepeatdirective instantiates a template once per item from a collection. Each template instance gets its own scope, where the given loop variable is set to the current collection item, and$indexis set to the item index or key. | 
  | ngShow | The ngShowdirective shows or hides the given HTML element based on the expression provided to thengShowattribute. The element is shown or hidden by removing or adding the.ng-hideCSS class onto the element. The.ng-hideCSS class is predefined in AngularJS and sets the display style to none (using an !important flag). For CSP mode please addangular-csp.cssto your html file (see ngCsp). | 
  | ngHide | The ngHidedirective shows or hides the given HTML element based on the expression provided to thengHideattribute. The element is shown or hidden by removing or adding theng-hideCSS class onto the element. The.ng-hideCSS class is predefined in AngularJS and sets the display style to none (using an !important flag). For CSP mode please addangular-csp.cssto your html file (see ngCsp). | 
  | ngStyle | The ngStyledirective allows you to set CSS style on an HTML element conditionally. | 
  | ngSwitch | The ngSwitchdirective is used to conditionally swap DOM structure on your template based on a scope expression. Elements withinngSwitchbut withoutngSwitchWhenorngSwitchDefaultdirectives will be preserved at the location as specified in the template. | 
  | ngTransclude | Directive that marks the insertion point for the transcluded DOM of the nearest parent directive that uses transclusion. | 
  | script | Load the content of a <script>element into$templateCache, so that the template can be used byngInclude,ngView, or directives. The type of the<script>element must be specified astext/ng-template, and a cache name for the template must be assigned through the element'sid, which can then be used as a directive'stemplateUrl. | 
  | select | HTML SELECTelement with angular data-binding. |