Updated incorrect function example for ..each method

This commit is contained in:
Timothy Warren 2011-11-02 08:39:33 -04:00
parent ecb538787b
commit 090212cd9d
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}):