I created an html page having same code in the introductory video of visualize.js.
It is working fine in latest version of chrome and firefox.
It is giving authentication error in safari and "Object doesn't support this property or method visualize.js, line 67 character 13795" in IE8.
Thanks in advance for the cooperation.
2 Answers:
Posted on November 28, 2014 at 4:07am
I was also facing the same problem. It was not passing the session id in report Execution requests. Now i use
v.login(
).done(function(){
v.report({
resource: url,
container: container,
success:function(){
},error:function(er){
}
});
}).fail(function(){
}
it works fine
Do you see anything else in the javascript console log of IE8?
I'm also having this problem. Visualize.js page correctly displays on IE, Chrome, and Firefox but it does not appear on Safari.