finalized list of jQuery methods to implement

This commit is contained in:
Martin Angers
2012-08-29 22:01:41 -04:00
parent df16c7a894
commit e0a4992785
+23
View File
@@ -2,6 +2,7 @@ package goquery
// TODO : Benchmarks
// TODO : Add the following methods:
// - AndSelf()
// - Closest()
// - Parents()
// - Contains() (static function?)
@@ -11,3 +12,25 @@ package goquery
// - Find() : Complete with Selection object and Node object as selectors
// - Has()
// - Html() ?
// - Index()
// - Is()
// - Last()
// - Length() / Size()
// - Map()
// - Next()
// - NextAll()
// - NextUntil()
// - Not()
// - Parent()
// - Parents()
// - ParentsUntil()
// - Prev()
// - PrevAll()
// - PrevUntil()
// - PushStack() ?
// - Siblings()
// - Slice()
// - Text()
// - ToArray() Is not implemented, is Selection.Nodes
// - Unique() ? Or internally only, to remove duplicates and maintain node order?
// - Val() ?