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?
+1
A:
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
2010-08-19 06:20:34