I have been looking around for an hour now trying to resolve this problem.
I run the latest version of Wordpress here
I think it has something to do with the jQuery being called the wrong way but as simple it might be, I have been looking at this for too long and I may be overseeing the simplest things. -.-
I use the wp head in the header section, deregistering the Wordpress jQuery and adding my own. It used to be the one from Google APIs that is now called below in the actual body - a deperate try to make things work.
I also downloaded the old 1.2 version found on the Easing Plugins website in a viciously furiously attempt.
It would be lovely if someone could hit me in the head, preferably with something hard, clarifying the stupidity of my coding flaw.
Thank you!
Also, failed to mention that it actually worked until a week ago.
EDIT: This is the functions.php - maybe that will help?
<?php
function emmatheme_scripts() {
//deregisters the Wordpress included jquery
wp_deregister_script( 'jquery' );
//adds own jquery
wp_register_script( 'jquery2', 'http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js');
wp_enqueue_script( 'jquery2' );
wp_enqueue_script( 'easing', get_template_directory_uri() . '/js/easing.js', 'jquery2' );
//Fancybox
wp_enqueue_script( 'fancy2', get_template_directory_uri() . '/js/fb2.js', 'jquery2' );
wp_enqueue_script( 'fancy3', get_template_directory_uri() . '/js/fb3.js', 'jquery2' );
}
add_action('init', 'emmatheme_scripts');
?>