Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 7d0c256

Browse files
vojtajinaIgorMinar
authored andcommittedOct 31, 2011
docs(jqlite): add missing methods
1 parent 6cbe096 commit 7d0c256

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed
 

Diff for: ‎src/jqLite.js

+9-1
Original file line numberDiff line numberDiff line change
@@ -38,21 +38,29 @@
3838
* - [css()](http://api.jquery.com/css/)
3939
* - [data()](http://api.jquery.com/data/)
4040
* - [eq()](http://api.jquery.com/eq/)
41+
* - [find()](http://api.jquery.com/find/) - Limited to lookups by tag name.
4142
* - [hasClass()](http://api.jquery.com/hasClass/)
43+
* - [html()](http://api.jquery.com/html/)
44+
* - [next()](http://api.jquery.com/next/)
4245
* - [parent()](http://api.jquery.com/parent/)
46+
* - [prepend()](http://api.jquery.com/prepend/)
4347
* - [prop()](http://api.jquery.com/prop/)
48+
* - [ready()](http://api.jquery.com/ready/)
4449
* - [remove()](http://api.jquery.com/remove/)
4550
* - [removeAttr()](http://api.jquery.com/removeAttr/)
4651
* - [removeClass()](http://api.jquery.com/removeClass/)
4752
* - [removeData()](http://api.jquery.com/removeData/)
4853
* - [replaceWith()](http://api.jquery.com/replaceWith/)
4954
* - [text()](http://api.jquery.com/text/)
50-
* - [trigger()](http://api.jquery.com/trigger/)
55+
* - [toggleClass()](http://api.jquery.com/toggleClass/)
5156
* - [unbind()](http://api.jquery.com/unbind/)
57+
* - [val()](http://api.jquery.com/val/)
5258
*
5359
* ## In addtion to the above, Angular privides an additional method to both jQuery and jQuery lite:
5460
*
5561
* - `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.
5664
*
5765
* @param {string|DOMElement} element HTML string or DOMElement to be wrapped into jQuery.
5866
* @returns {Object} jQuery object.

0 commit comments

Comments
 (0)