Skip to content

Instantly share code, notes, and snippets.

@tobiastom
Created June 17, 2014 09:46
Show Gist options
  • Save tobiastom/4d8517149ea4a6475585 to your computer and use it in GitHub Desktop.
Save tobiastom/4d8517149ea4a6475585 to your computer and use it in GitHub Desktop.
each = function( list, callback ) {
for ( index = 0; index < list.length; index++) {
callback( list[index] )
}
};
each( document.querySelectorAll( 'input[type=checkbox]' ), function( element ) {
element.click()
} );
document.querySelector('#toolbar input[name=commit]').click();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment