W3cubDocs

/Angular.js 1.2

Improve this Doc View Source angular.element

  1. function in module ng

Wraps a raw DOM element or HTML string as a jQuery element.

If jQuery is available, angular.element is an alias for the jQuery function. If jQuery is not available, angular.element delegates to Angular's built-in subset of jQuery, called "jQuery lite" or "jqLite."

jqLite is a tiny, API-compatible subset of jQuery that allows Angular to manipulate the DOM in a cross-browser compatible way. jqLite implements only the most commonly needed functionality with the goal of having a very small footprint.

To use jQuery, simply load it before DOMContentLoaded event fired.

Note: all element references in Angular are always wrapped with jQuery or jqLite; they are never raw DOM references.

Angular's jqLite

jqLite provides only the following jQuery methods:

jQuery/jqLite Extras

Angular also provides the following additional methods and events to both jQuery and jqLite:

Events

  • $destroy - AngularJS intercepts all jqLite/jQuery's DOM destruction apis and fires this event on all DOM nodes being removed. This can be used to clean up any 3rd party bindings to the DOM element before it is removed.

Methods

  • controller(name) - retrieves the controller of the current element or its parent. By default retrieves controller associated with the ngController directive. If name is provided as camelCase directive name, then the controller for this directive will be retrieved (e.g. 'ngModel').
  • injector() - retrieves the injector of the current element or its parent.
  • scope() - retrieves the scope of the current element or its parent.
  • isolateScope() - retrieves an isolate scope if one is attached directly to the current element. This getter should be used only on elements that contain a directive which starts a new isolate scope. Calling scope() on this element always returns the original non-isolate scope.
  • inheritedData() - same as data(), but walks up the DOM until a value is found or the top parent element is reached.

Usage

angular.element(element);

Arguments

Param Type Details
element stringDOMElement

HTML string or DOMElement to be wrapped into jQuery.

Returns

Object

jQuery object.

© 2010–2016 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://code.angularjs.org/1.2.32/docs/api/ng/function/angular.element