A function returning one or more space-separated class names to be added to the existing class name(s).
A function returning one or more space-separated class names to be added to the existing class name(s). Receives the index position of the element in the set and the existing class name(s) as arguments. Within the function, this refers to the current element in the set.
the given function
the instance
A function returning one or more space-separated class names to be added to the existing class name(s).
A function returning one or more space-separated class names to be added to the existing class name(s). Receives the index position of the element in the set and the existing class name(s) as arguments. Within the function, this refers to the current element in the set.
the given function
the instance
One or more space-separated classes to be added to the class attribute of each matched element.
One or more space-separated classes to be added to the class attribute of each matched element.
the given class name
the instance
Insert content, specified by the parameter, after each element in the set of matched elements.
Insert content, specified by the parameter, after each element in the set of matched elements.
the given HTML content
the instance
Insert content, specified by the parameter, to the end of each element in the set of matched elements.
Insert content, specified by the parameter, to the end of each element in the set of matched elements.
the given HTML content
the instance
Get the value of an attribute for the first element in the set of matched elements or set one or more attributes for every matched element.
Get the value of an attribute for the first element in the set of matched elements or set one or more attributes for every matched element.
the given attribute name
the instance
Attach a handler to an event for the elements.
Attach a handler to an event for the elements.
An object containing one or more DOM event types and functions to execute for them.
the instance
Attach a handler to an event for the elements.
Attach a handler to an event for the elements.
A string containing one or more DOM event types, such as "click" or "submit," or custom event names.
An object containing data that will be passed to the event handler.
the instance
Attach a handler to an event for the elements.
Attach a handler to an event for the elements.
A string containing one or more DOM event types, such as "click" or "submit," or custom event names.
An object containing data that will be passed to the event handler.
Setting the third argument to false will attach a function that prevents the default action from occurring and stops the event from bubbling. The default is true.
the instance
Attach a handler to an event for the elements.
Attach a handler to an event for the elements.
A string containing one or more DOM event types, such as "click" or "submit," or custom event names.
An object containing data that will be passed to the event handler.
A function to execute each time the event is triggered.
the instance
Get the children of each element in the set of matched elements, optionally filtered by a selector.
Get the children of each element in the set of matched elements, optionally filtered by a selector.
A string containing a selector expression to match elements against.
the instance
Create a deep copy of the set of matched elements.
Create a deep copy of the set of matched elements.
A Boolean indicating whether event handlers should be copied along with the elements. As of jQuery 1.4, element data will be copied as well.
the instance
Get the children of each element in the set of matched elements, including text and comment nodes.
Get the children of each element in the set of matched elements, including text and comment nodes.
Retrieves the controller of the current element or its parent.
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
the name of the controller
the controller instance
Get the computed style properties for the first element in the set of matched elements.
Get the computed style properties for the first element in the set of matched elements.
An array of one or more CSS properties.
the instance
Get the computed style properties for the first element in the set of matched elements.
Get the computed style properties for the first element in the set of matched elements.
A CSS property.
the instance
Get the value of a computed style property for the first element in the set of matched elements or set one or more CSS properties for every matched element.
Get the value of a computed style property for the first element in the set of matched elements or set one or more CSS properties for every matched element.
the instance
Store arbitrary data associated with the matched elements or return the value at the named data store for the first element in the set of matched elements
Store arbitrary data associated with the matched elements or return the value at the named data store for the first element in the set of matched elements
An object of key-value pairs of data to update.
Store arbitrary data associated with the matched elements or return the value at the named data store for the first element in the set of matched elements.
Store arbitrary data associated with the matched elements or return the value at the named data store for the first element in the set of matched elements.
A string naming the piece of data to set.
The new data value; this can be any Javascript type except undefined.
Remove the set of matched elements from the DOM (AngularJS 1.4).
Remove the set of matched elements from the DOM (AngularJS 1.4).
A selector expression that filters the set of matched elements to be removed.
the instance
Remove all child nodes of the set of matched elements from the DOM (AngularJS 1.0).
Remove all child nodes of the set of matched elements from the DOM (AngularJS 1.0).
the instance
Reduce the set of matched elements to the one at the specified index (AngularJS 1.4).
Reduce the set of matched elements to the one at the specified index (AngularJS 1.4).
An integer indicating the position of the element, counting backwards from the last element in the set.
the instance
Get the descendants of each element in the current set of matched elements, filtered by a selector, jQuery object, or element.
Get the descendants of each element in the current set of matched elements, filtered by a selector, jQuery object, or element.
An element or a jQuery object to match elements against.
the instance
Get the descendants of each element in the current set of matched elements, filtered by a selector, jQuery object, or element.
Get the descendants of each element in the current set of matched elements, filtered by a selector, jQuery object, or element.
An element or a jQuery object to match elements against.
the instance
Get the descendants of each element in the current set of matched elements, filtered by a selector, jQuery object, or element.
Get the descendants of each element in the current set of matched elements, filtered by a selector, jQuery object, or element.
A string containing a selector expression to match elements against.
the typed selector
Determine whether any of the matched elements are assigned the given class.
Determine whether any of the matched elements are assigned the given class.
The class name to search for.
true, if any of the matched elements are assigned the given class.
Get the HTML contents of the first element in the set of matched elements.
Get the HTML contents of the first element in the set of matched elements.
the given element
the HTML contents
Get the HTML contents of the first element in the set of matched elements.
Get the HTML contents of the first element in the set of matched elements.
the HTML contents
Same as data(), but walks up the DOM until a value is found or the top parent element is reached.
Same as data(), but walks up the DOM until a value is found or the top parent element is reached.
the given key
the given value
the instance
Retrieves the injector of the current element or its parent.
Retrieves the injector of the current element or its parent.
the injector
Retrieves an isolate scope if one is attached directly to the current element.
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. Requires Debug Data to be enabled.
the scope
Get the immediately following sibling of each element in the set of matched elements.
Get the immediately following sibling of each element in the set of matched elements. If a selector is provided, it retrieves the next sibling only if it matches that selector.
A string containing a selector expression to match elements against.
the instance
Remove an event handler.
Remove an event handler.
One or more space-separated event types and optional namespaces, or just namespaces, such as "click", "keydown.myPlugin", or ".myPlugin".
A selector which should match the one originally passed to .on() when attaching event handlers.
A handler function previously attached for the event(s), or the special value false.
the instance
Attach an event handler function for one or more events to the selected elements.
Attach an event handler function for one or more events to the selected elements.
One or more space-separated event types and optional namespaces, such as "click" or "keydown.myPlugin".
A selector string to filter the descendants of the selected elements that trigger the event. If the selector is null or omitted, the event is always triggered when it reaches the selected element.
Data to be passed to the handler in event.data when an event is triggered.
A function to execute when the event is triggered. The value false is also allowed as a shorthand for a function that simply does return false.
the instance
Attach a handler to an event for the elements.
Attach a handler to an event for the elements. The handler is executed at most once per element per event type.
One or more space-separated event types and optional namespaces, such as "click" or "keydown.myPlugin".
Data to be passed to the handler in event.data when an event is triggered.
A function to execute at the time the event is triggered.
the instance
Get the parent of each element in the current set of matched elements, optionally filtered by a selector.
Get the parent of each element in the current set of matched elements, optionally filtered by a selector.
A string containing a selector expression to match elements against.
the instance
Insert content, specified by the parameter, to the beginning of each element in the set of matched elements.
Insert content, specified by the parameter, to the beginning of each element in the set of matched elements.
A function that returns an HTML string, DOM element(s), or jQuery object to insert at the beginning of each element in the set of matched elements. Receives the index position of the element in the set and the old HTML value of the element as arguments. Within the function, this refers to the current element in the set.
the instance
Insert content, specified by the parameter, to the beginning of each element in the set of matched elements.
Insert content, specified by the parameter, to the beginning of each element in the set of matched elements.
One or more additional DOM elements, arrays of elements, HTML strings, or jQuery objects to insert at the beginning of each element in the set of matched elements.
the instance
Set one or more properties for the set of matched elements.
Set one or more properties for the set of matched elements.
The name of the property to set.
A value to set for the property.
the instance
Get the value of a property for the first element in the set of matched elements (AngularJS 1.6).
Get the value of a property for the first element in the set of matched elements (AngularJS 1.6).
The name of the property to get.
the property value
Specify a function to execute when the DOM is fully loaded.
Specify a function to execute when the DOM is fully loaded.
A function to execute after the DOM is ready.
the instance
Remove the set of matched elements from the DOM.
Remove the set of matched elements from the DOM.
A selector expression that filters the set of matched elements to be removed.
the instance
Remove an attribute from each element in the set of matched elements.
Remove an attribute from each element in the set of matched elements.
An attribute to remove; as of AngularJS 1.7, it can be a space-separated list of attributes.
the instance
Remove a single class, multiple classes, or all classes from each element in the set of matched elements (AngularJS 1.4).
Remove a single class, multiple classes, or all classes from each element in the set of matched elements (AngularJS 1.4).
A function returning one or more space-separated class names to be removed. Receives the index position of the element in the set and the old class value as arguments.
the instance
Remove a single class, multiple classes, or all classes from each element in the set of matched elements.
Remove a single class, multiple classes, or all classes from each element in the set of matched elements.
One or more space-separated classes to be removed from the class attribute of each matched element.
the instance
Remove a previously-stored piece of data.
Remove a previously-stored piece of data.
An array or space-separated string naming the pieces of data to delete.
the instance
Remove a previously-stored piece of data.
Remove a previously-stored piece of data.
A string naming the piece of data to delete.
the instance
Remove a previously-stored piece of data.
Remove a previously-stored piece of data.
the instance
Replace each element in the set of matched elements with the provided new content and return the set of elements that was removed.
Replace each element in the set of matched elements with the provided new content and return the set of elements that was removed.
A function that returns content with which to replace the set of matched elements.
the instance
Replace each element in the set of matched elements with the provided new content and return the set of elements that was removed.
Replace each element in the set of matched elements with the provided new content and return the set of elements that was removed.
The content to insert. May be an HTML string, DOM element, array of DOM elements, or jQuery object.
the instance
Retrieves the scope of the current element or its parent.
Retrieves the scope of the current element or its parent. Requires Debug Data to be enabled.
the scope
Set the content of each element in the set of matched elements to the specified tex
Set the content of each element in the set of matched elements to the specified tex
A function returning the text content to set. Receives the index position of the element in the set and the old text value as arguments.
the instance
Set the content of each element in the set of matched elements to the specified tex
Set the content of each element in the set of matched elements to the specified tex
The text to set as the content of each matched element. When Number or Boolean is supplied, it will be converted to a String representation.
the instance
Get the combined text contents of each element in the set of matched elements, including their descendants.
Get the combined text contents of each element in the set of matched elements, including their descendants.
the instance
A function that returns class names to be toggled in the class attribute of each element in the matched set. Receives the index position of the element in the set, the old class value, and the state as arguments.
A Boolean (not just truthy/falsy) value to determine whether the class should be added or removed.
the instance
Add or remove one or more classes from each element in the set of matched elements, depending on either the class's presence or the value of the state argument.
Add or remove one or more classes from each element in the set of matched elements, depending on either the class's presence or the value of the state argument.
A function that returns class names to be toggled in the class attribute of each element in the matched set. Receives the index position of the element in the set, the old class value, and the state as arguments.
the instance
Add or remove one or more classes from each element in the set of matched elements, depending on either the class's presence or the value of the state argument.
Add or remove one or more classes from each element in the set of matched elements, depending on either the class's presence or the value of the state argument.
A Boolean (not just truthy/falsy) value to determine whether the class should be added or removed.
the instance
Add or remove one or more classes from each element in the set of matched elements, depending on either the class's presence or the value of the state argument.
Add or remove one or more classes from each element in the set of matched elements, depending on either the class's presence or the value of the state argument.
One or more class names (separated by spaces) to be toggled for each element in the matched set.
A Boolean (not just truthy/falsy) value to determine whether the class should be added or removed.
the instance
Add or remove one or more classes from each element in the set of matched elements, depending on either the class's presence or the value of the state argument.
Add or remove one or more classes from each element in the set of matched elements, depending on either the class's presence or the value of the state argument.
One or more class names (separated by spaces) to be toggled for each element in the matched set.
the instance
Execute all handlers attached to an element for an event.
Execute all handlers attached to an element for an event.
A jQuery.Event object.
Additional parameters to pass along to the event handler.
an Object
Execute all handlers attached to an element for an event.
Execute all handlers attached to an element for an event.
A jQuery.Event object.
an Object
Execute all handlers attached to an element for an event.
Execute all handlers attached to an element for an event.
A string containing a JavaScript event type, such as click or submit.
Additional parameters to pass along to the event handler.
an Object
Execute all handlers attached to an element for an event.
Execute all handlers attached to an element for an event.
A string containing a JavaScript event type, such as click or submit.
an Object
Remove a previously-attached event handler from the elements.
Remove a previously-attached event handler from the elements.
A jQuery.Event object.
the instance
Remove a previously-attached event handler from the elements.
Remove a previously-attached event handler from the elements.
A string containing a JavaScript event type, such as click or submit.
The function that is to be no longer executed.
the instance
Remove a previously-attached event handler from the elements.
Remove a previously-attached event handler from the elements.
A string containing a JavaScript event type, such as click or submit.
Unbinds the corresponding 'return false' function that was bound using .bind( eventType, false ).
the instance
Remove a previously-attached event handler from the elements.
Remove a previously-attached event handler from the elements.
A string containing a JavaScript event type, such as click or submit.
the instance
Remove a previously-attached event handler from the elements.
Remove a previously-attached event handler from the elements.
the instance
Set the value of each element in the set of matched elements.
Set the value of each element in the set of matched elements.
A function returning the value to set. this is the current element. Receives the index position of the element in the set and the old value as arguments.
the instance
Set the value of each element in the set of matched elements.
Set the value of each element in the set of matched elements.
A string of text, a number, or an array of strings corresponding to the value of each matched element to set as selected/checked.
the instance
Get the current value of the first element in the set of matched elements or set the value of every matched element.
Get the current value of the first element in the set of matched elements or set the value of every matched element.
the value
Wrap an HTML structure around each element in the set of matched elements.
Wrap an HTML structure around each element in the set of matched elements.
A callback function returning the HTML content or jQuery object to wrap around the matched elements. Receives the index position of the element in the set as an argument. Within the function, this refers to the current element in the set.
the instance
Wrap an HTML structure around each element in the set of matched elements.
Wrap an HTML structure around each element in the set of matched elements.
A selector, element, HTML string, or jQuery object specifying the structure to wrap around the matched elements. When you pass a jQuery collection containing more than one element, or a selector matching more than one element, the first element will be used.
the instance
JQuery Lite
https://docs.angularjs.org/api/ng/function/angular.element