.ajax and .fade intermittent issue

.ajax and .fade intermittent issue

Hi all.

Am turning to you for any insight you may be able to give with a very frustrating and perplexing problem - one which I am not experiencing, but several other people are. And I have just made the site "live" to add insult to injury!


I'm also loading jQuery via  
  1. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>

The "Tour Menu" is where things go wrong for others but not for me!

Upon page load, the Tour Menu is built via PHP - and the first time a menu link is clicked, the menu is redrawn via an ajax call -
  1. var request = $. ajax({
    type: "GET",
    url: "tourpage_load.php",
    data: { tpid : tourPageID},
    dataType: "json"
    });
    request. done( function( msg) {
    $( "#wTourMenu"). html( msg. menu );
    $( "#widgetFoot01"). html( msg. foot );
    $( '#widgetHead01'). html( msg. page_title ). hide(). fadeIn();
    $( "#pageContent"). html( msg. body_text ). hide(). fadeIn();
    etc...
The 3 times *I* have seen the error and the 2 people who have also reported the error point towards 

 Object Our first adventure of a lifetime! has no method 'fadeIn' 
The complete function starts from line 125 in shared.js file.

Can anyone shed some light on this for me please as I don't even know where to begin debugging an error when I myself am not experiencing the error!!!

Thank you in anticipation for any help.

R.

PS: Another gremlin that appeared last night is the Fakebook Like buttons - in MSIEv9 it's positioned correctly, but in Chrome v26 (!!!) it's not!!  Any clues?!?