Here is the answer!!! I figured this out after analyzing the JS console. Make sure your header.php file does not have any instance of jQuery loading. This will take care of everything.
Put this code in your template functions.php file.
// ADD JQUERY
function jquery_method() {
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery'
, '//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js', false, false);
wp_enqueue_script('jquery');
}
if( !is_admin() ) {
add_action('init', 'jquery_method');
}