Could we help you? Please click the banners. We are young and desperately need the money
By default, WordPress enqueues its version of jQuery into the frontend. If you'd like to remove that version of jQuery (perhaps because you'd like to enqueue your own), you can do so using the following script (you can add it to your functions.php, for example):
add_action('wp_enqueue_scripts', function() {
wp_deregister_script('jquery');
});