Skip to content

Instantly share code, notes, and snippets.

@oneEyedSunday
Created December 14, 2018 01:44
Show Gist options
  • Save oneEyedSunday/f5c36ac7807c88ace61e25298a4d1055 to your computer and use it in GitHub Desktop.
Save oneEyedSunday/f5c36ac7807c88ace61e25298a4d1055 to your computer and use it in GitHub Desktop.
Fix for closed loops
function handler(index) {
alert(index)
}
function hookupevents() {
for (var i = 0; i < 3; i++) {
document.getElementById("button" + i).addEventListener("click", handler.bind(this,i));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment