Skip to content

Instantly share code, notes, and snippets.

@mikekavouras
Last active May 3, 2016 15:45
Show Gist options
  • Save mikekavouras/ce1afdc874c5d084569189bb8f0397d2 to your computer and use it in GitHub Desktop.
Save mikekavouras/ce1afdc874c5d084569189bb8f0397d2 to your computer and use it in GitHub Desktop.
function bindClick(index) {
jQuery('.lock' + index).click(function() {
jQuery('.lock' + index).addClass('unlocked');
jQuery('.door' + index).addClass('open');
});
}
for (var i = 1; i <= X; i++) {
bindClick(i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment