Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $( 'input[type=checkbox]' ).change( function(){
- var checked = $(this).is( ':checked' );
- var column = $(this).closest( 'td' ).index();
- var trs = $(this).closest( 'table' ).find( 'tr:not(:first)' );
- $(trs).each( function(i,tr){
- var td = $(tr).find( 'td' ).eq( column );
- if ( ! $(td).is( '.hour' ) )
- return;
- $(td).toggleClass( 'hour_checked', ! checked );
- $(td).toggleClass( 'no_phone_shift', checked );
- } );
- } );
Add Comment
Please, Sign In to add comment