Skip to content

Instantly share code, notes, and snippets.

@donvitonet
Created March 1, 2013 12:31
Show Gist options
  • Save donvitonet/5064336 to your computer and use it in GitHub Desktop.
Save donvitonet/5064336 to your computer and use it in GitHub Desktop.
$( '#MarcarTodos' ).live('click', function(){
var tabela = $( this ).parent().parent().parent().parent();
if ( this.checked === true ) {
tabela.find( ':checkbox' ).attr( 'checked', true );
} else {
tabela.find( ':checkbox' ).attr( 'checked', false );
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment