|
38 | 38 | * - [css()](http://api.jquery.com/css/)
|
39 | 39 | * - [data()](http://api.jquery.com/data/)
|
40 | 40 | * - [eq()](http://api.jquery.com/eq/)
|
| 41 | + * - [find()](http://api.jquery.com/find/) - Limited to lookups by tag name. |
41 | 42 | * - [hasClass()](http://api.jquery.com/hasClass/)
|
| 43 | + * - [html()](http://api.jquery.com/html/) |
| 44 | + * - [next()](http://api.jquery.com/next/) |
42 | 45 | * - [parent()](http://api.jquery.com/parent/)
|
| 46 | + * - [prepend()](http://api.jquery.com/prepend/) |
43 | 47 | * - [prop()](http://api.jquery.com/prop/)
|
| 48 | + * - [ready()](http://api.jquery.com/ready/) |
44 | 49 | * - [remove()](http://api.jquery.com/remove/)
|
45 | 50 | * - [removeAttr()](http://api.jquery.com/removeAttr/)
|
46 | 51 | * - [removeClass()](http://api.jquery.com/removeClass/)
|
47 | 52 | * - [removeData()](http://api.jquery.com/removeData/)
|
48 | 53 | * - [replaceWith()](http://api.jquery.com/replaceWith/)
|
49 | 54 | * - [text()](http://api.jquery.com/text/)
|
50 |
| - * - [trigger()](http://api.jquery.com/trigger/) |
| 55 | + * - [toggleClass()](http://api.jquery.com/toggleClass/) |
51 | 56 | * - [unbind()](http://api.jquery.com/unbind/)
|
| 57 | + * - [val()](http://api.jquery.com/val/) |
52 | 58 | *
|
53 | 59 | * ## In addtion to the above, Angular privides an additional method to both jQuery and jQuery lite:
|
54 | 60 | *
|
55 | 61 | * - `scope()` - retrieves the current Angular scope of the element.
|
| 62 | + * - `inheritedData()` - same as `data()`, but walks up the DOM until a value is found or the top |
| 63 | + * parent element is reached. |
56 | 64 | *
|
57 | 65 | * @param {string|DOMElement} element HTML string or DOMElement to be wrapped into jQuery.
|
58 | 66 | * @returns {Object} jQuery object.
|
|
0 commit comments