Skip to content

Instantly share code, notes, and snippets.

@ginpei
Created April 23, 2013 04:49
Show Gist options
  • Save ginpei/5440927 to your computer and use it in GitHub Desktop.
Save ginpei/5440927 to your computer and use it in GitHub Desktop.
var tds = document.querySelectorAll('td');
for (var i=0,l=tds.length; i<l; i++) {
tds[i].addEventListener('click', function(event) {
this.querySelector('input').checked = true;
}, false);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment