If you're like me, you use console.log for debugging.  It turns out
that on IE 9, if you haven't turned on the debugger (by pressing F12),
console is not defined and console.log throws an error.  If you open
the console, console.log works as expected for the remainder of the IE
session.

This means that you might see problems when starting IE, but as soon
as you turn on the debugger, the problems go away.  If that's the
case, it might be because you are using console.log.

I do the following to avoid this issue:

 if ('undefined' == typeof console)     {console = new Object();}
 if ('undefined' == typeof console.log) {console.log = function(){};}

hth,



-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-visualization-api?hl=en.

Reply via email to