Skip to content

Instantly share code, notes, and snippets.

@zjhiphop
Last active August 29, 2015 14:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zjhiphop/d06d8d42b4d5e19c0232 to your computer and use it in GitHub Desktop.
Save zjhiphop/d06d8d42b4d5e19c0232 to your computer and use it in GitHub Desktop.
jquery-each-context issue
function test() {
var a = 1;
$('span').each(function() {
this.innerHTML = a; // 'a' can not accessed in this scope
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment