-
-
Save clarknelson/ef8781b6ba3c1ce25652be0b56a2b374 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('a').each(function(){ | |
var $foo = $(this); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('a').each(function(index, element){ | |
var $foo = $(element); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
which is more performant