My wordpress site is a bit heavy to download. On the frontend, its including jquery unnecessarily. In my firebug it looks like:
jquery.js?ver=1.3.2 >
jquery.js?ver=1.3.2
All the other solutions are now out of date as of wordpress 3.6
add_filter( 'wp_default_scripts', 'change_default_jquery' ); function change_default_jquery( &$scripts){ if(!is_admin()){ $scripts->remove( 'jquery'); $scripts->add( 'jquery', false, array( 'jquery-core' ), '1.10.2' ); } }