getting below error on IE8
canvas.getContext("2d") Unexpected call to method or property access.Error
i have also add
if (typeof G_vmlCanvasManager != 'undefined') {
G_vmlCanvasManager.initElement(canvas);
}
how to run canvas in IE8 with ecanvas.js.
also i have check but no luck for me on it.
thanks
Firstly, you’re sure you’ve included the file in your markup (as per the documentation):
Are you definitely instantiating your “canvas” properly? If you’re doing it dynamically then:
Or if you’ve added your canvas to the page’s markup are you grabbing a reference to it:
Your browser doesn’t know what to do with your canvas object, so it looks like it’s not instantiated properly.