Hi, all jquery stuff doesn't work any more in my wordress admin.
Can't add widget, can't edit things who need jquery ect.
Some idea?
i tryed stuff like
define('CONCATENATE_SCRIPTS', false);
Or
function my_scripts_method() {
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js');
wp_enqueue_script( 'jquery' );
}
add_action('wp_enqueue_scripts', 'my_scripts_method');
But until now, nothing work
Thank you