Loading external jQuery files with $

You can do this using follow snippet

// Add scripts to wp_head()
function child_theme_head_script() { ?>
    <!-- Your HTML/JavaScript goes here -->
<?php }
add_action( 'wp_head', 'child_theme_head_script' );