From 090212cd9d1aa1047e217fce2a07fa87daea415c Mon Sep 17 00:00:00 2001 From: Timothy Warren Date: Wed, 2 Nov 2011 08:39:33 -0400 Subject: [PATCH] Updated incorrect function example for ..each method --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 205de73..dca89fb 100644 --- a/README.md +++ b/README.md @@ -26,11 +26,11 @@ Browser support: IE8+, Latest versions of Firefox, Chrome, Safari, Opera * each: For applying changes to every item matched by a selector - $_(selector).dom.each(callback); + $_(selector).each(callback); Example : - $_(".foo").dom.each(function(e){ + $_(".foo").each(function(e){ $_(e).dom.text(value); }):