Cheers drew it works with twentyten! Obviously I need to find out why my theme is incompatible though.
Its uses <?php wp_enqueue_script(“jquery”); ?> in the header and:
<?php
function my_init_method() {
wp_deregister_script( ‘jquery’ );
wp_register_script( ‘jquery’, ‘https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js’);
}
add_action(‘init’, ‘my_init_method’);
?>
in the functions. Would i be right in saying that this is overiding the version of jquery the dashboard is using and it needs a newer version?