Skip to content

Instantly share code, notes, and snippets.

@hankyates
Created March 26, 2013 01:17
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 hankyates/5242343 to your computer and use it in GitHub Desktop.
Save hankyates/5242343 to your computer and use it in GitHub Desktop.
var elements = ['foo', 'bar', 'baz']
for(i=0; i < elements.length; i++){
elements[i].setClick(function(){
alert(i);
});
}
elements[0].click(); // what happens?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment