Hi i saw selector that is 'parent > child', but didn't see selector that start at '>' What does it means?
below this code..
    $cb.on('change', function(e){
      e.preventDefault();
      $('> tbody > tr > td:first-child > input:checkbox', $bTable).prop('checked', this.checked);
    });