I would like to implement a simple drawing tool that could run across most of the browsers, but it's not working on IE. Any one have an idea on how can I achieve maximum browser compatibility?
Asked
Active
Viewed 168 times
0
-
possible duplicate of [How can I use the HTML5 canvas element in IE?](http://stackoverflow.com/questions/1332501/how-can-i-use-the-html5-canvas-element-in-ie) – msw Aug 19 '10 at 06:14
-
Internet Explorer 9 is the first version to support the canvas element. Support seems pretty complete and my rendering experiments have been consistent with Chrome and FireFox. – Brian Nickel Jul 30 '11 at 06:00
2 Answers
1
You can use explorer canvas to support canvas element in Internet Explorer (including IE6)
To use it, just add this to your document:
<head>
<!--[if IE]><script src="excanvas.js"></script><![endif]-->
</head>
Further instructions (for specific versions) are here

naikus
- 24,302
- 4
- 42
- 43