I'm loading jQuery in the footer and with Google's CDN and its causing the AJAX loader and errors to not appear. Thoughts?
function ps_load_jquery_footer() {
if ( !is_admin() ) {
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery', get_template_directory_uri() . "/js/jquery-1.7.1.min.js", false, '1.7.1', true );
wp_enqueue_script( 'jquery' );
}
}
add_action('init', 'ps_load_jquery_footer');