Remove default JR scripts
What's the best way of removing default jobroller scripts in a child theme? I could make a copy of includes/theme-enqueue.php if I really have to, but I'd prefer to keep as much as possible in the core.
I was wondering if I could do something like this in the child theme's functions.php:
function deregister_jr_load_scripts() {
wp_deregister_script( 'qtip');
}
add_action( 'wp_print_scripts', 'deregister_jr_load_scripts' );