From e0a499278500e41f7a76cff351fca1d2dd29e2ec Mon Sep 17 00:00:00 2001 From: Martin Angers Date: Wed, 29 Aug 2012 22:01:41 -0400 Subject: [PATCH] finalized list of jQuery methods to implement --- goquery.go | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/goquery.go b/goquery.go index 42857c1..2dcd60a 100644 --- a/goquery.go +++ b/goquery.go @@ -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() ?