Skip to content

Instantly share code, notes, and snippets.

@hobodave
Created June 9, 2011 17:33
Show Gist options
  • Select an option

  • Save hobodave/1017243 to your computer and use it in GitHub Desktop.

Select an option

Save hobodave/1017243 to your computer and use it in GitHub Desktop.
document.observe('dom:loaded', function() {
if ($('action-toggle')) {
$('action-toggle').on('click', function() {
var checked = this.checked;
this.up('table').select('input.action-select').each(function(cb) {
cb.checked = checked;
})
})
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment