Skip to content

Instantly share code, notes, and snippets.

@linmx0130
Created June 11, 2013 15:52
Show Gist options
  • Save linmx0130/5758060 to your computer and use it in GitHub Desktop.
Save linmx0130/5758060 to your computer and use it in GitHub Desktop.
Create click event with for (Correct version)
var Creator=function (number)
{
$("#Player"+number).click(function(){setMeToTwo(number);});
}
for (var i=1 ;i<=8;i+=1)
{
Creator(i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment