Post#22 » Mon Feb 09, 2009 5:20 am
I think the problem is this ... you have a variable scoped inside curly braces. Depending on circumstances, javascript may be allowed to clear this variable at any time since its lifetime ends once the curly braces are closed.
// original code
try {
var pageTracker = _gat._getTracker("UA-5046283-1");
pageTracker._trackPageview();
} catch(err) {}
// Proposed new code
var pageTracker = null;
try {
pageTracker = _gat._getTracker("UA-5046283-1");
pageTracker._trackPageview();
} catch(err) {}
BTW: Add me to the list of folks failing to load the site properly. Running Vista Ultimate x64 Edition, IE8 RC1.
The actual code failing for me is whbutton.js, line 306, character 11:
pageTracker._trackPageview("/get_realm.php" );